|
Boost-Commit : |
Subject: [Boost-commit] svn:boost r49816 - trunk/tools/build/v2/kernel
From: ghost_at_[hidden]
Date: 2008-11-17 07:08:04
Author: vladimir_prus
Date: 2008-11-17 07:08:03 EST (Mon, 17 Nov 2008)
New Revision: 49816
URL: http://svn.boost.org/trac/boost/changeset/49816
Log:
If escape characters are not supported, emit warning, not error.
This is temporary solution to make regression test work again.
Text files modified:
trunk/tools/build/v2/kernel/bootstrap.jam | 7 +++----
1 files changed, 3 insertions(+), 4 deletions(-)
Modified: trunk/tools/build/v2/kernel/bootstrap.jam
==============================================================================
--- trunk/tools/build/v2/kernel/bootstrap.jam (original)
+++ trunk/tools/build/v2/kernel/bootstrap.jam 2008-11-17 07:08:03 EST (Mon, 17 Nov 2008)
@@ -76,10 +76,9 @@
# 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.
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