summaryrefslogtreecommitdiffstats
path: root/mkconfig.rb
diff options
context:
space:
mode:
authornobu <nobu@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2006-10-15 23:32:12 +0000
committernobu <nobu@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2006-10-15 23:32:12 +0000
commit365426804a96134d3e2c6810c6e71c5a0fed9ddf (patch)
tree715bc4ae785e1885ed30a075a3fb14dd22072604 /mkconfig.rb
parentae298b841a31cd246cb26dcc7b438b269439a891 (diff)
downloadruby-365426804a96134d3e2c6810c6e71c5a0fed9ddf.tar.gz
ruby-365426804a96134d3e2c6810c6e71c5a0fed9ddf.tar.xz
ruby-365426804a96134d3e2c6810c6e71c5a0fed9ddf.zip
* mkconfig.rb: *OBJS are not needed for extension libraries.
* {bcc32,wince,win32}/Makefile.sub (config.status): fixed typo, missing comma. git-svn-id: http://svn.ruby-lang.org/repos/ruby/trunk@11178 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
Diffstat (limited to 'mkconfig.rb')
-rw-r--r--mkconfig.rb2
1 files changed, 1 insertions, 1 deletions
diff --git a/mkconfig.rb b/mkconfig.rb
index c4649e9c1..9cbffa4a8 100644
--- a/mkconfig.rb
+++ b/mkconfig.rb
@@ -41,7 +41,7 @@ File.foreach "config.status" do |line|
if /^s([%,])@(\w+)@\1(?:\|\#_!!_\#\|)?(.*)\1/ =~ line
name = $2
val = $3.gsub(/\\(?=,)/, '')
- next if /^(?:ac_.*|DEFS|configure_input|(?:top_)?srcdir)$/ =~ name
+ next if /^(?:ac_.*|DEFS|configure_input|(?:top_)?srcdir|\w+OBJS)$/ =~ name
next if /^\$\(ac_\w+\)$/ =~ val
next if /^\$\{ac_\w+\}$/ =~ val
next if /^\$ac_\w+$/ =~ val