ruby-changes:20740
From: yugui <ko1@a...>
Date: Sun, 31 Jul 2011 23:19:12 +0900 (JST)
Subject: [ruby-changes:20740] yugui:r32788 (trunk): Forward-ports r32779 from branches/ruby_1_9_3 to trunk. The original commit
yugui 2011-07-31 23:17:45 +0900 (Sun, 31 Jul 2011) New Revision: 32788 http://svn.ruby-lang.org/cgi-bin/viewvc.cgi?view=rev&revision=32788 Log: Forward-ports r32779 from branches/ruby_1_9_3 to trunk. The original commit by ktsj. -- configure.in: fix typos. Modified files: trunk/configure.in Index: configure.in =================================================================== --- configure.in (revision 32787) +++ configure.in (revision 32788) @@ -2600,18 +2600,18 @@ AC_MSG_RESULT($gnumake) ]) AS_IF([test "$gnumake" = yes], [ NULLCMD=: ], [ - AC_MSG_CHECKING([for safe null command for ${Make-make}]) + AC_MSG_CHECKING([for safe null command for ${MAKE-make}]) mkdir conftest.dir echo 'A=1' > conftest.dir/Makefile echo 'B=$(A:1=@:)' >> conftest.dir/Makefile echo 'all:; $B 1 2 3 4 5 6 7 8 9' >> conftest.dir/Makefile - if (cd conftest.dir; ${Make-make} >/dev/null 2>/dev/null); then + if (cd conftest.dir; ${MAKE-make} >/dev/null 2>/dev/null); then NULLCMD=: else echo 'A=1' > conftest.dir/Makefile echo 'B=$(A:1=@true)' >> conftest.dir/Makefile echo 'all:; $B 1 2 3 4 5 6 7 8 9' >> conftest.dir/Makefile - if (cd conftest.dir; ${Make-make} >/dev/null 2>/dev/null); then + if (cd conftest.dir; ${MAKE-make} >/dev/null 2>/dev/null); then NULLCMD=true else AC_MSG_ERROR(no candidate for safe null command) -- ML: ruby-changes@q... Info: http://www.atdot.net/~ko1/quickml/