Boost logo

Boost-Commit :

Subject: [Boost-commit] svn:boost r65852 - trunk
From: ghost_at_[hidden]
Date: 2010-10-09 03:25:44


Author: vladimir_prus
Date: 2010-10-09 03:25:36 EDT (Sat, 09 Oct 2010)
New Revision: 65852
URL: http://svn.boost.org/trac/boost/changeset/65852

Log:
Fix formatting of `./bootstrap.sh --show-libraries`.

Patch from Cedric Le Dillau.
Fixes #4691.

Text files modified:
   trunk/bootstrap.sh | 6 +-----
   1 files changed, 1 insertions(+), 5 deletions(-)

Modified: trunk/bootstrap.sh
==============================================================================
--- trunk/bootstrap.sh (original)
+++ trunk/bootstrap.sh 2010-10-09 03:25:36 EDT (Sat, 09 Oct 2010)
@@ -233,7 +233,6 @@
 
 # If there is a list of libraries
 if test "x$flag_show_libraries" = xyes; then
- libraries=`$BJAM -d0 --show-libraries`
   cat <<EOF
 
 The following Boost libraries have portions that require a separate build
@@ -242,10 +241,7 @@
 
 The Boost libraries requiring separate building and installation are:
 EOF
- for lib in $libraries
- do
- echo " $lib"
- done
+ $BJAM -d0 --show-libraries | grep '^\s*-'
   exit 0
 fi
 


Boost-Commit list run by bdawes at acm.org, david.abrahams at rcn.com, gregod at cs.rpi.edu, cpdaniel at pacbell.net, john at johnmaddock.co.uk