mirror of
https://github.com/ruby/ruby.git
synced 2025-09-20 19:14:00 +02:00
* common.mk (ECHO1): nmake does not allow parenthesis in make variable
replacement. git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/branches/ruby_1_9_3@32775 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
This commit is contained in:
parent
4982814640
commit
c06bef87c0
2 changed files with 7 additions and 1 deletions
|
@ -1,3 +1,8 @@
|
||||||
|
Sun Jul 31 20:39:12 2011 Yuki Sonoda (Yugui) <yugui@yugui.jp>
|
||||||
|
|
||||||
|
* common.mk (ECHO1): nmake does not allow parenthesis in make variable
|
||||||
|
replacement.
|
||||||
|
|
||||||
Sun Jul 31 20:21:36 2011 "Yuki Sonoda (Yugui)" <yugui@yugui.jp>
|
Sun Jul 31 20:21:36 2011 "Yuki Sonoda (Yugui)" <yugui@yugui.jp>
|
||||||
|
|
||||||
* common.mk (ECHO1): ":" in a make variable replacement cause a syntax
|
* common.mk (ECHO1): ":" in a make variable replacement cause a syntax
|
||||||
|
|
|
@ -8,7 +8,8 @@ dll: $(LIBRUBY_SO)
|
||||||
V = 0
|
V = 0
|
||||||
Q1 = $(V:1=)
|
Q1 = $(V:1=)
|
||||||
Q = $(Q1:0=@)
|
Q = $(Q1:0=@)
|
||||||
ECHO1 = $(V:1=@$(NULLCMD))
|
n=$(NULLCMD)
|
||||||
|
ECHO1 = $(V:1=@$n)
|
||||||
ECHO = $(ECHO1:0=@echo)
|
ECHO = $(ECHO1:0=@echo)
|
||||||
|
|
||||||
RUBYLIB = -
|
RUBYLIB = -
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue