* common.mk (clear-installed-list): put redirection before set
command, since it seems to be handled by nmake in special way. [ruby-dev:41711] git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@28445 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
This commit is contained in:
parent
6f95792347
commit
8508e37b51
@ -1,3 +1,9 @@
|
|||||||
|
Sat Jun 26 11:56:31 2010 Nobuyoshi Nakada <nobu@ruby-lang.org>
|
||||||
|
|
||||||
|
* common.mk (clear-installed-list): put redirection before set
|
||||||
|
command, since it seems to be handled by nmake in special way.
|
||||||
|
[ruby-dev:41711]
|
||||||
|
|
||||||
Sat Jun 26 10:08:36 2010 Nobuyoshi Nakada <nobu@ruby-lang.org>
|
Sat Jun 26 10:08:36 2010 Nobuyoshi Nakada <nobu@ruby-lang.org>
|
||||||
|
|
||||||
* test/ruby/envutil.rb (EnvUtil#invoke_ruby): no needs to copy the
|
* test/ruby/envutil.rb (EnvUtil#invoke_ruby): no needs to copy the
|
||||||
|
@ -368,7 +368,7 @@ CLEAR_INSTALLED_LIST = clear-installed-list
|
|||||||
install-prereq: $(CLEAR_INSTALLED_LIST) PHONY
|
install-prereq: $(CLEAR_INSTALLED_LIST) PHONY
|
||||||
|
|
||||||
clear-installed-list: PHONY
|
clear-installed-list: PHONY
|
||||||
@set MAKE="$(MAKE)" > $(INSTALLED_LIST)
|
@> $(INSTALLED_LIST) set MAKE="$(MAKE)"
|
||||||
|
|
||||||
clean: clean-ext clean-local clean-enc clean-golf clean-rdoc clean-extout
|
clean: clean-ext clean-local clean-enc clean-golf clean-rdoc clean-extout
|
||||||
clean-local:: PHONY
|
clean-local:: PHONY
|
||||||
|
Loading…
x
Reference in New Issue
Block a user