Skip to content

Commit

Permalink
* enc/Makefile.in (ECHO1): Same as the recent fix in common.mk.
Browse files Browse the repository at this point in the history
  ":" 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/branches/ruby_1_9_3@32780 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
  • Loading branch information
yugui committed Jul 31, 2011
1 parent 100f2e6 commit 3c20af1
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 1 deletion.
6 changes: 6 additions & 0 deletions ChangeLog
@@ -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 22:44:08 2011 Kazuki Tsujimoto <kazuki@callcc.net>

* configure.in: fix typos.
Expand Down
4 changes: 3 additions & 1 deletion enc/Makefile.in
@@ -1,7 +1,8 @@
V = 0
Q1 = $(V:1=)
Q = $(Q1:0=@)
ECHO1 = $(V:1=@:)
n=$(NULLCMD)
ECHO1 = $(V:1=@$n)
ECHO = $(ECHO1:0=@echo)

encsrcdir = @srcdir@
Expand Down Expand Up @@ -53,6 +54,7 @@ RUBY = $(MINIRUBY)

WORKDIRS = @WORKDIRS@

NULLCMD = @NULLCMD@
RM = @RM@
RMDIR = @RMDIR@
RMDIRS = @RMDIRS@
Expand Down

0 comments on commit 3c20af1

Please sign in to comment.