summaryrefslogtreecommitdiffstats
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
commit9636c8af4c472d751c469e39cf3138c6c9bbd31d (patch)
treedf2e894af2c184dbff951b0a4b6d7873ec54e227
parentc2fdb05934be44bb10ba0438d737c7c3265963d7 (diff)
downloadruby-9636c8af4c472d751c469e39cf3138c6c9bbd31d.tar.gz
ruby-9636c8af4c472d751c469e39cf3138c6c9bbd31d.tar.xz
ruby-9636c8af4c472d751c469e39cf3138c6c9bbd31d.zip
* win32/mkexports.rb: remove unnecessary exports. (ruby-dev:17418)
git-svn-id: http://svn.ruby-lang.org/repos/ruby/trunk@2581 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
-rw-r--r--ChangeLog4
-rw-r--r--win32/mkexports.rb2
2 files changed, 5 insertions, 1 deletions
diff --git a/ChangeLog b/ChangeLog
index 0a84a4796..e32e76c1e 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,7 @@
+Tue Jun 18 19:20:16 2002 NAKAMURA Usaku <usa@ruby-lang.org>
+
+ * win32/mkexports.rb: remove unnecessary exports. (ruby-dev:17418)
+
Tue Jun 18 12:50:17 2002 Nobuyoshi Nakada <nobu.nokada@softhome.net>
* parse.y (yylex): should pushback proper char after '<<'.
diff --git a/win32/mkexports.rb b/win32/mkexports.rb
index b20f41479..385938193 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