From b43b6cf71f4ce482d46fd60364b457afe2963078 Mon Sep 17 00:00:00 2001 From: nobu Date: Fri, 8 Jul 2011 02:39:15 +0000 Subject: * common.mk (sudo-precheck): true command is not standard on Windows. git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@32444 b2dd03c8-39d4-4d8f-98ff-823fe69b080e --- ChangeLog | 5 +++++ Makefile.in | 1 + common.mk | 2 +- 3 files changed, 7 insertions(+), 1 deletion(-) diff --git a/ChangeLog b/ChangeLog index a87737fe65..73a0e7cf4e 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,8 @@ +Fri Jul 8 11:39:12 2011 Nobuyoshi Nakada + + * common.mk (sudo-precheck): true command is not standard on + Windows. + Fri Jul 8 10:39:52 2011 KOSAKI Motohiro * thread_pthread.c (gvl_destroy): fix cond_t leak. diff --git a/Makefile.in b/Makefile.in index a01faae931..531743d0e8 100644 --- a/Makefile.in +++ b/Makefile.in @@ -3,6 +3,7 @@ NULLCMD = : RUNCMD = $(SHELL) CHDIR = @CHDIR@ exec = exec +NULL = /dev/null #### Start of system configuration section. #### diff --git a/common.mk b/common.mk index 20bc23befb..0a4da6ddd1 100644 --- a/common.mk +++ b/common.mk @@ -929,7 +929,7 @@ love: sudo-precheck up all test install test-all @echo love is all you need sudo-precheck: - @$(SUDO) true + @$(SUDO) echo > $(NULL) help: PHONY $(MESSAGE_BEGIN) \ -- cgit v1.2.3