aboutsummaryrefslogtreecommitdiffstats
path: root/win32/mkexports.rb
diff options
context:
space:
mode:
authorusa <usa@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2002-06-18 10:23:31 +0000
committerusa <usa@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2002-06-18 10:23:31 +0000
commiteecf7fdcdeb5607fe1dd93886cac328d0764aae8 (patch)
treedf2e894af2c184dbff951b0a4b6d7873ec54e227 /win32/mkexports.rb
parent1b8b699d9fe2e1d3dddf3caee71d1cb95f294b6d (diff)
downloadruby-eecf7fdcdeb5607fe1dd93886cac328d0764aae8.tar.gz
* win32/mkexports.rb: remove unnecessary exports. (ruby-dev:17418)
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@2581 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
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