From aa6e09d93d4f14fd1606cd15293ef04c7b0244d7 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jurko=20Gospodneti=C4=87?= Date: Thu, 22 May 2008 15:50:28 +0000 Subject: [PATCH] Corrected a bug in Boost Jam's base Jambase script causing it to trim the error message displayed when its boost-build rule gets called multiple times. [SVN r45660] --- src/engine/Jambase | 2 +- src/engine/jambase.c | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/src/engine/Jambase b/src/engine/Jambase index 19250bdb5..48590d6b0 100644 --- a/src/engine/Jambase +++ b/src/engine/Jambase @@ -71,7 +71,7 @@ rule boost-build ( dir ? ) { if $(.bootstrap-file) { - EXIT "Error: Illegal attempt to re-bootstrap the build system by invoking" ; + ECHO "Error: Illegal attempt to re-bootstrap the build system by invoking" ; ECHO ; ECHO " 'boost-build" $(dir) ";'" ; ECHO ; diff --git a/src/engine/jambase.c b/src/engine/jambase.c index c12be911b..dbcf263e3 100644 --- a/src/engine/jambase.c +++ b/src/engine/jambase.c @@ -34,7 +34,7 @@ char *jambase[] = { "{\n", "if $(.bootstrap-file)\n", "{\n", -"EXIT \"Error: Illegal attempt to re-bootstrap the build system by invoking\" ;\n", +"ECHO \"Error: Illegal attempt to re-bootstrap the build system by invoking\" ;\n", "ECHO ;\n", "ECHO \" 'boost-build\" $(dir) \";'\" ;\n", "ECHO ;\n",