From 5d2fba19f7989b8a2c55834a5735f5fd5b60197c Mon Sep 17 00:00:00 2001 From: Kenneth Heafield Date: Sat, 12 May 2012 14:44:02 -0400 Subject: Build fixes: correct config error, fix paths for tests --- jam-files/sanity.jam | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) (limited to 'jam-files/sanity.jam') diff --git a/jam-files/sanity.jam b/jam-files/sanity.jam index a89e95f9..eeb59f6e 100644 --- a/jam-files/sanity.jam +++ b/jam-files/sanity.jam @@ -21,7 +21,11 @@ rule test_flags ( flags * ) { echo $(cmd) ; echo $(ret) ; } - return $(ret[2]) == 0 ; + if $(ret[2]) = 0 { + return true ; + } else { + return ; + } } rule test_header ( name ) { -- cgit v1.2.3