summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorusa <usa@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2009-11-19 08:04:11 +0000
committerusa <usa@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2009-11-19 08:04:11 +0000
commit6c47c60ad3020f5653e81399ca62685597f4fd0e (patch)
treec9674b7d8b9f9d19026deae89d3bfe0001091d69
parent5afad3ecb89e2a6ecd98f94dcc0d153b5121502f (diff)
downloadruby-6c47c60ad3020f5653e81399ca62685597f4fd0e.tar.gz
ruby-6c47c60ad3020f5653e81399ca62685597f4fd0e.tar.xz
ruby-6c47c60ad3020f5653e81399ca62685597f4fd0e.zip
* win32/Makefile.sub: nmake execute the file named echo if it exists
in the PATH. reported by Kenta Murata <mrkn AT mrkn.jp> via IRC. git-svn-id: http://svn.ruby-lang.org/repos/ruby/trunk@25853 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
-rw-r--r--ChangeLog5
-rw-r--r--win32/Makefile.sub4
2 files changed, 7 insertions, 2 deletions
diff --git a/ChangeLog b/ChangeLog
index 9903c098e..9995d083d 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,8 @@
+Thu Nov 19 17:00:59 2009 NAKAMURA Usaku <usa@ruby-lang.org>
+
+ * win32/Makefile.sub: nmake execute the file named echo if it exists
+ in the PATH. reported by Kenta Murata <mrkn AT mrkn.jp> via IRC.
+
Thu Nov 19 02:50:47 2009 Tanaka Akira <akr@fsij.org>
* vm_eval.c (rb_search_method_entry): show the type of the hidden
diff --git a/win32/Makefile.sub b/win32/Makefile.sub
index 0ad8dfb02..b49638f12 100644
--- a/win32/Makefile.sub
+++ b/win32/Makefile.sub
@@ -738,7 +738,7 @@ s,@try_header@,try_compile,;t t
miniruby: miniruby$(EXEEXT)
miniruby$(EXEEXT):
- @echo. $(LIBS)
+ @echo $(LIBS)
$(PURIFY) $(CC) $(MAINOBJ) $(MINIOBJS) $(COMMONOBJS) $(DMYEXT) $(LIBS) -Fe$@ -link $(LDFLAGS)
@$(RM) miniruby.lib miniruby.exp
miniruby.exe -v
@@ -774,7 +774,7 @@ $(LIBRUBY): $(RUBYDEF)
$(AR) $(ARFLAGS)$@ -def:$(RUBYDEF)
$(LIBRUBY_SO): $(LIBRUBY_A) $(DLDOBJS) $(RUBYDEF) $(RUBY_SO_NAME).res
- @echo. $(DLDOBJS)
+ @echo $(DLDOBJS)
@-$(PRE_LIBRUBY_UPDATE)
$(LDSHARED) $(MAINOBJ) $(DLDOBJS) $(LIBRUBY_A) \
$(RUBY_SO_NAME).res $(LIBS) -Fe$@ -link $(LDFLAGS) \