mirror of
https://github.com/ruby/ruby.git
synced 2022-11-09 12:17:21 -05:00
* win32/Makefile.sub (config.status): use sub! instead of []= because
[]= causes exception. git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@2529 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
This commit is contained in:
parent
a7a2b1d8f3
commit
564edcce18
2 changed files with 6 additions and 1 deletions
|
@ -1,3 +1,8 @@
|
|||
Thu Jun 6 12:04:30 2002 NAKAMURA Usaku <usa@ruby-lang.org>
|
||||
|
||||
* win32/Makefile.sub (config.status): use sub! instead of []= because
|
||||
[]= causes exception.
|
||||
|
||||
Thu Jun 6 11:42:15 2002 Nobuyoshi Nakada <nobu.nokada@softhome.net>
|
||||
|
||||
* lib/thread.rb (Queue::pop): get rid of race condition.
|
||||
|
|
|
@ -254,7 +254,7 @@ config.h: Makefile $(srcdir)/win32/Makefile.sub
|
|||
|
||||
config.status: Makefile $(srcdir)/win32/Makefile.sub $(MINIRUBY)
|
||||
@echo Creating config.status
|
||||
@$(MINIRUBY) -pe "chomp(' ');~/@CFLAGS@/||$$_['$(CFLAGS)']='$$(CFLAGS)'" << > $@
|
||||
@$(MINIRUBY) -pe "~/@CFLAGS@/||$$_.sub!(/#{Regexp.quote('$(CFLAGS)')}/o, '$$(CFLAGS)')" << > $@
|
||||
# Generated automatically by Makefile.sub.
|
||||
s,@SHELL@,$$(COMSPEC),;t t
|
||||
s,@CFLAGS@,$(CFLAGS),;t t
|
||||
|
|
Loading…
Reference in a new issue