summaryrefslogtreecommitdiff
path: root/win32/mkexports.rb
diff options
context:
space:
mode:
Diffstat (limited to 'win32/mkexports.rb')
-rw-r--r--win32/mkexports.rb2
1 files changed, 1 insertions, 1 deletions
diff --git a/win32/mkexports.rb b/win32/mkexports.rb
index b20f414799..3859381935 100644
--- a/win32/mkexports.rb
+++ b/win32/mkexports.rb
@@ -8,7 +8,7 @@ IO.foreach("|dumpbin -symbols " + objs.join(' ')) do |l|
next unless l.sub!(/.*\sExternal\s+\|\s+/, '')
if l.sub!(/^_/, '')
next if /@.*@/ =~ l || /@[0-9a-f]{16}$/ =~ l
- elsif !l.sub!(/^(\S+) \([^@?]*\)$/, '\1')
+ elsif !l.sub!(/^(\S+) \([^@?\`\']*\)$/, '\1')
next
end
SYM[l.strip] = true