|
Boost-Commit : |
From: jurko.gospodnetic_at_[hidden]
Date: 2008-05-22 11:50:28
Author: jurko
Date: 2008-05-22 11:50:28 EDT (Thu, 22 May 2008)
New Revision: 45660
URL: http://svn.boost.org/trac/boost/changeset/45660
Log:
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.
Text files modified:
trunk/tools/jam/src/Jambase | 2 +-
trunk/tools/jam/src/jambase.c | 2 +-
2 files changed, 2 insertions(+), 2 deletions(-)
Modified: trunk/tools/jam/src/Jambase
==============================================================================
--- trunk/tools/jam/src/Jambase (original)
+++ trunk/tools/jam/src/Jambase 2008-05-22 11:50:28 EDT (Thu, 22 May 2008)
@@ -71,7 +71,7 @@
{
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 ;
Modified: trunk/tools/jam/src/jambase.c
==============================================================================
--- trunk/tools/jam/src/jambase.c (original)
+++ trunk/tools/jam/src/jambase.c 2008-05-22 11:50:28 EDT (Thu, 22 May 2008)
@@ -34,7 +34,7 @@
"{\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",
Boost-Commit list run by bdawes at acm.org, david.abrahams at rcn.com, gregod at cs.rpi.edu, cpdaniel at pacbell.net, john at johnmaddock.co.uk