From f1a9faf2a754d7c2846ea128aefe8faace9ea48b 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] --- src/engine/build.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/engine/build.sh b/src/engine/build.sh index 8396622c3..95d4bb572 100755 --- a/src/engine/build.sh +++ b/src/engine/build.sh @@ -12,7 +12,7 @@ BOOST_JAM_TOOLSET= echo_run () { echo "$@" - "$@" + $@ r=$? if test $r -ne 0 ; then exit $r