summaryrefslogtreecommitdiff
path: root/jam-files
diff options
context:
space:
mode:
Diffstat (limited to 'jam-files')
-rw-r--r--jam-files/sanity.jam6
1 files changed, 5 insertions, 1 deletions
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 ) {