From cce7dfcf1737732f78c693f339d0e61fc903fb8b Mon Sep 17 00:00:00 2001 From: barnabyrobson Date: Sat, 22 Sep 2012 20:13:20 -0700 Subject: [PATCH] Update SConscript Fixing copy and pasted comment to say correct thing when program built against Boost.Python can not run. --- SConscript | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/SConscript b/SConscript index 408b7f5f..7c2c0307 100644 --- a/SConscript +++ b/SConscript @@ -168,7 +168,7 @@ int main() result, output = context.TryRun(bp_source_file, '.cpp') if not result: context.Result(0) - print "Cannot build against Boost.Python." + print "Cannot run program built against Boost.Python." return False context.Result(1) return True