diff options
author | nobu <nobu@b2dd03c8-39d4-4d8f-98ff-823fe69b080e> | 2005-02-06 16:22:12 +0000 |
---|---|---|
committer | nobu <nobu@b2dd03c8-39d4-4d8f-98ff-823fe69b080e> | 2005-02-06 16:22:12 +0000 |
commit | 623896e8916afc72b86a44a83227afa6cebe973f (patch) | |
tree | d2e21345ce5f7890d8a70ac61f47f25d3e05ac6d /lib | |
parent | 3413b644e6dae3fec071a29f3b9feab94d24409c (diff) | |
download | ruby-623896e8916afc72b86a44a83227afa6cebe973f.tar.gz ruby-623896e8916afc72b86a44a83227afa6cebe973f.tar.xz ruby-623896e8916afc72b86a44a83227afa6cebe973f.zip |
* lib/mkmf.rb (create_makefile): fix unbalanced parens.
git-svn-id: http://svn.ruby-lang.org/repos/ruby/branches/ruby_1_8@7904 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
Diffstat (limited to 'lib')
-rw-r--r-- | lib/mkmf.rb | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/mkmf.rb b/lib/mkmf.rb index cf78a0f5c..936774280 100644 --- a/lib/mkmf.rb +++ b/lib/mkmf.rb @@ -996,7 +996,7 @@ static: $(STATIC_LIB) while line = dfile.gets() line.gsub!(/\.o\b/, ".#{$OBJEXT}") if $nmake - line.gsub!(%r"(\s)([^\s\/]+\.(?:#{SRC_EXT.join('|')})(?=\s|\z)", '\1{.;$(VPATH)}\2') + line.gsub!(%r"(\s)([^\s\/]+\.(?:#{SRC_EXT.join('|')}))(?=\s|\z)", '\1{.;$(VPATH)}\2') end line.gsub!(/\$\(hdrdir\)\/config.h/, $config_h) if $config_h mfile.print line |