From 564edcce1817c52b0e8ec5d282896d68bca35d70 Mon Sep 17 00:00:00 2001 From: usa Date: Thu, 6 Jun 2002 03:06:11 +0000 Subject: [PATCH] * 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 --- ChangeLog | 5 +++++ win32/Makefile.sub | 2 +- 2 files changed, 6 insertions(+), 1 deletion(-) diff --git a/ChangeLog b/ChangeLog index b055d7be22..10eaa11ce4 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,8 @@ +Thu Jun 6 12:04:30 2002 NAKAMURA Usaku + + * win32/Makefile.sub (config.status): use sub! instead of []= because + []= causes exception. + Thu Jun 6 11:42:15 2002 Nobuyoshi Nakada * lib/thread.rb (Queue::pop): get rid of race condition. diff --git a/win32/Makefile.sub b/win32/Makefile.sub index 03422778cb..c75c248ab4 100644 --- a/win32/Makefile.sub +++ b/win32/Makefile.sub @@ -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