1
0
Fork 0
mirror of https://github.com/ruby/ruby.git synced 2022-11-09 12:17:21 -05:00

* lib/mkmf.rb (create_makefile): fix unbalanced parens.

git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/branches/ruby_1_8@7904 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
This commit is contained in:
nobu 2005-02-06 16:22:12 +00:00
parent 72bbbbec5a
commit 68056ad3ad
2 changed files with 4 additions and 2 deletions

View file

@ -1,4 +1,4 @@
Mon Feb 7 00:13:38 2005 Nobuyoshi Nakada <nobu@ruby-lang.org>
Mon Feb 7 01:21:50 2005 Nobuyoshi Nakada <nobu@ruby-lang.org>
* ext/socket/extconf.rb: check if getaddrinfo() works fine only when
wide-getaddrinfo option is not given. fixed: [ruby-dev:25422]
@ -22,6 +22,8 @@ Mon Feb 7 00:13:38 2005 Nobuyoshi Nakada <nobu@ruby-lang.org>
* mkconfig.rb: no longer embed srcdir and compile_dir into
rbconfig.rb.
* lib/mkmf.rb (create_makefile): fix unbalanced parens.
Sun Feb 6 19:23:01 2005 NAKAMURA Usaku <usa@ruby-lang.org>
* eval.c (stack_extend): add prototype because VC++8 doesn't

View file

@ -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