2
0
mirror of https://github.com/boostorg/python.git synced 2026-01-19 16:32:16 +00:00

Merge pull request #12 from barnabyrobson/patch-1

Update SConscript to print the correct message when Boost.Python config test cannot be run.
This commit is contained in:
Jim Bosch
2012-09-25 20:14:19 -07:00

View File

@@ -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