mirror of
https://github.com/ruby/ruby.git
synced 2022-11-09 12:17:21 -05:00
Forward-ports r32780 from branches/ruby_1_9_3 to trunk.
-- * enc/Makefile.in (ECHO1): Same as the recent fix in common.mk. ":" in a make variable replacement cause a syntax error with /usr/ccs/bin/make on Solaris. Uses $(NULLCMD) instead. git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@32787 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
This commit is contained in:
parent
4270dbe629
commit
ddeccd20f1
2 changed files with 9 additions and 1 deletions
|
@ -1,3 +1,9 @@
|
||||||
|
Sun Jul 31 22:57:16 2011 Yuki Sonoda (Yugui) <yugui@yugui.jp>
|
||||||
|
|
||||||
|
* enc/Makefile.in (ECHO1): Same as the recent fix in common.mk.
|
||||||
|
":" in a make variable replacement cause a syntax error with
|
||||||
|
/usr/ccs/bin/make on Solaris. Uses $(NULLCMD) instead.
|
||||||
|
|
||||||
Sun Jul 31 21:16:02 2011 Yuki Sonoda (Yugui) <yugui@yugui.jp>
|
Sun Jul 31 21:16:02 2011 Yuki Sonoda (Yugui) <yugui@yugui.jp>
|
||||||
|
|
||||||
* complex.c (f_signbit): gcc4 on Solaris DOES have signbit but does
|
* complex.c (f_signbit): gcc4 on Solaris DOES have signbit but does
|
||||||
|
|
|
@ -1,7 +1,8 @@
|
||||||
V = 0
|
V = 0
|
||||||
Q1 = $(V:1=)
|
Q1 = $(V:1=)
|
||||||
Q = $(Q1:0=@)
|
Q = $(Q1:0=@)
|
||||||
ECHO1 = $(V:1=@:)
|
n=$(NULLCMD)
|
||||||
|
ECHO1 = $(V:1=@$n)
|
||||||
ECHO = $(ECHO1:0=@echo)
|
ECHO = $(ECHO1:0=@echo)
|
||||||
|
|
||||||
encsrcdir = @srcdir@
|
encsrcdir = @srcdir@
|
||||||
|
@ -53,6 +54,7 @@ RUBY = $(MINIRUBY)
|
||||||
|
|
||||||
WORKDIRS = @WORKDIRS@
|
WORKDIRS = @WORKDIRS@
|
||||||
|
|
||||||
|
NULLCMD = @NULLCMD@
|
||||||
RM = @RM@
|
RM = @RM@
|
||||||
RMDIR = @RMDIR@
|
RMDIR = @RMDIR@
|
||||||
RMDIRS = @RMDIRS@
|
RMDIRS = @RMDIRS@
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue