Opened 12 years ago
Closed 12 years ago
#4691 closed Patches (fixed)
Wrong formatting for "bootstrap.sh --show-libraries"
Reported by: | Owned by: | ||
---|---|---|---|
Milestone: | To Be Determined | Component: | Building Boost |
Version: | Boost 1.44.0 | Severity: | Cosmetic |
Keywords: | bootstrap | Cc: |
Description
No need for bootstrap.sh
to wrap bjam -d0 --show-libraries
with human-readable comment as it is already the case.
boostcpp.jam extract:
ECHO "The following libraries require building:" ; for local l in $(libraries) { ECHO " - $(l)" ; }
bootstrap.sh extract:
libraries=`$BJAM -d0 --show-libraries` [...] for lib in $libraries do echo " $lib" done
The patch suppress bootstrap.sh over-formatting.
Attachments (1)
Change History (3)
by , 12 years ago
Attachment: | bootstrap_showlibraries.patch added |
---|
comment:1 by , 12 years ago
This was checked in as r65852, thanks! (For unknown reasons, Trac was not automatically updated when checkin happened)
comment:2 by , 12 years ago
Resolution: | → fixed |
---|---|
Status: | new → closed |
Note:
See TracTickets
for help on using tickets.
Suppress over-formatting when invoking bjam --show-libraries