From 990b520ba0fe02277eeae021397cc639bb576618 Mon Sep 17 00:00:00 2001 From: Vladimir Prus Date: Mon, 17 Nov 2008 12:08:03 +0000 Subject: [PATCH] If escape characters are not supported, emit warning, not error. This is temporary solution to make regression test work again. [SVN r49816] --- v2/kernel/bootstrap.jam | 7 +++---- 1 file changed, 3 insertions(+), 4 deletions(-) diff --git a/v2/kernel/bootstrap.jam b/v2/kernel/bootstrap.jam index cc874e2a3..c9b7fbb36 100644 --- a/v2/kernel/bootstrap.jam +++ b/v2/kernel/bootstrap.jam @@ -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.