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

If escape characters are not supported, emit warning, not error.

This is temporary solution to make regression test work again.


[SVN r49816]
This commit is contained in:
Vladimir Prus
2008-11-17 12:08:03 +00:00
parent 7c69dc9500
commit 990b520ba0

View File

@@ -76,10 +76,9 @@ module .ENVIRON
# Make sure that \n escape is avaiable.
if "\n" = "n"
{
ECHO "error: escape sequences are not supported" ;
ECHO "error: your version of bjam is likely out of date" ;
ECHO "error: please get a fresh version from SVN." ;
EXIT ;
ECHO "warning: escape sequences are not supported" ;
ECHO "warning: your version of bjam is likely out of date" ;
ECHO "warning: please get a fresh version from SVN." ;
}
# Bootstrap the module system. Then bring the import rule into the global module.