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

* win32/Makefile.sub: nmake executes the file named echo if it exists

in the PATH.  reported by Kenta Murata <mrkn AT mrkn.jp> via IRC.



git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/branches/ruby_1_8@25854 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
This commit is contained in:
usa 2009-11-19 08:16:13 +00:00
parent ffe69c2d6a
commit 7c564d3e16
2 changed files with 7 additions and 2 deletions

View file

@ -1,3 +1,8 @@
Thu Nov 19 17:14:04 2009 NAKAMURA Usaku <usa@ruby-lang.org>
* win32/Makefile.sub: nmake executes the file named echo if it exists
in the PATH. reported by Kenta Murata <mrkn AT mrkn.jp> via IRC.
Sat Nov 14 17:09:39 2009 Nobuyoshi Nakada <nobu@ruby-lang.org>
* configure.in (--with-opt-dir): ignore and suppress a warning.

View file

@ -576,7 +576,7 @@ s,@top_srcdir@,$(srcdir),;t t
<<KEEP
miniruby$(EXEEXT):
@echo. $(LIBS)
@echo $(LIBS)
@$(RM) $@
$(PURIFY) $(CC) $(MAINOBJ) $(MINIOBJS) $(LIBRUBY_A) $(LIBS) -Fe$@ $(LDFLAGS)
$(LDSHARED_1)
@ -606,7 +606,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$@ $(LDFLAGS) \