diff options
author | nobu <nobu@b2dd03c8-39d4-4d8f-98ff-823fe69b080e> | 2016-01-05 00:48:04 +0000 |
---|---|---|
committer | nobu <nobu@b2dd03c8-39d4-4d8f-98ff-823fe69b080e> | 2016-01-05 00:48:04 +0000 |
commit | fabb8b45cd889a564f580830659d4db188b6c795 (patch) | |
tree | f2c7d0b7e4980f1eff97578dd1d4648cc1d9052d | |
parent | 02144c9f9ab1ccbb52b5d50ea8660572e99c2a6f (diff) |
enc/Makefile.in: get rid of nmake bug
* enc/Makefile.in (ECHO1): expand NULLCMD by configured value to
get rid of a bug of nmake, that it can expand bare single name
variable but cannot in substition.
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@53437 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
-rw-r--r-- | enc/Makefile.in | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/enc/Makefile.in b/enc/Makefile.in index ac9cee9a40..a0f9893f85 100644 --- a/enc/Makefile.in +++ b/enc/Makefile.in @@ -1,8 +1,7 @@ V = 0 Q1 = $(V:1=) Q = $(Q1:0=@) -n=$(NULLCMD) -ECHO1 = $(V:1=@$n) +ECHO1 = $(V:1=@@NULLCMD@) ECHO = $(ECHO1:0=@echo) encsrcdir = @srcdir@ |