From 79a2641febe01ec9f05428fd7a4fb28caca8f05f Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Markus=20Sch=C3=B6pflin?= Date: Thu, 7 Jul 2005 09:23:34 +0000 Subject: [PATCH] Removed quotes around the command to run in echo_run(), because this was causing the build to fail in the second stage on Tru64 4.0F. It seems like bjam tried to build the target " " or something like that. [SVN r29925] --- historic/jam/src/build.sh | 2 +- jam_src/build.sh | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/historic/jam/src/build.sh b/historic/jam/src/build.sh index 8396622c3..95d4bb572 100644 --- a/historic/jam/src/build.sh +++ b/historic/jam/src/build.sh @@ -12,7 +12,7 @@ BOOST_JAM_TOOLSET= echo_run () { echo "$@" - "$@" + $@ r=$? if test $r -ne 0 ; then exit $r diff --git a/jam_src/build.sh b/jam_src/build.sh index 8396622c3..95d4bb572 100644 --- a/jam_src/build.sh +++ b/jam_src/build.sh @@ -12,7 +12,7 @@ BOOST_JAM_TOOLSET= echo_run () { echo "$@" - "$@" + $@ r=$? if test $r -ne 0 ; then exit $r