-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Forwardports r32772 and r32773 from branches/ruby_1_9_3 to trunk.
* common.mk (ECHO1): ":" in a make variable replacement cause a syntax error with /usr/ccs/bin/make on Solaris. Uses $(NULLCMD) instead. * configure.in (NULLCMD): new check. * Makefile.in (NULLCMD): Reflects checking in configure. * win32/Makefile.sub (NULLCMD): new assignment. git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@32774 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
- Loading branch information
Showing
5 changed files
with
36 additions
and
2 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,14 @@ | ||
Sun Jul 31 20:21:36 2011 "Yuki Sonoda (Yugui)" <[email protected]> | ||
|
||
* common.mk (ECHO1): ":" in a make variable replacement cause a syntax | ||
error with /usr/ccs/bin/make on Solaris. Uses $(NULLCMD) instead. | ||
|
||
* configure.in (NULLCMD): new check. | ||
|
||
* Makefile.in (NULLCMD): Reflects checking in configure. | ||
|
||
* win32/Makefile.sub (NULLCMD): new assignment. | ||
|
||
Sun Jul 31 18:58:59 2011 Nobuyoshi Nakada <[email protected]> | ||
|
||
* io.c (rb_pipe): pipe on cygwin can succeed half but fail | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,5 @@ | ||
SHELL = /bin/sh | ||
NULLCMD = : | ||
NULLCMD = @NULLCMD@ | ||
RUNCMD = $(SHELL) | ||
CHDIR = @CHDIR@ | ||
exec = exec | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,7 @@ | ||
# -*- makefile -*- | ||
|
||
SHELL = $(COMSPEC) | ||
NULLCMD = : | ||
RUNCMD = $(COMSPEC) /c | ||
MKFILES = Makefile | ||
NULL = nul | ||
|