Opened 14 years ago
Closed 12 years ago
#2417 closed Bugs (fixed)
Suppress python configuration warning
Reported by: | Vladimir Prus | Owned by: | Dave Abrahams |
---|---|---|---|
Milestone: | Boost 1.37.0 | Component: | python USE GITHUB |
Version: | Boost 1.36.0 | Severity: | Problem |
Keywords: | Cc: |
Description
libs/python/build/Jamfile.v2 is written to emit a warning if no python is found. The message is emitted when the file is parsed, as opposed to when Boost.Python is actually build, and produces noise for folks who are using Boost in large project and won't use Python.
Jamfile should be modified to use the 'message' target to emit the warning only when actually build. Jamfiles for graph, mpi and regex show how to do this.
Note:
See TracTickets
for help on using tickets.
(In [62895]) Delay the warning that the Boost.Python Jamfile emits, until someone actually tries to use the library. Fixes #2417.