2
0
mirror of https://github.com/boostorg/build.git synced 2026-02-14 00:32:11 +00:00

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]
This commit is contained in:
Jurko Gospodnetić
2008-05-22 15:50:28 +00:00
parent 0c99cb166a
commit aa6e09d93d
2 changed files with 2 additions and 2 deletions

View File

@@ -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 ;

View File

@@ -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",