Ticket #4691: bootstrap_showlibraries.patch

File bootstrap_showlibraries.patch, 614 bytes (added by Cedric Le Dillau <ld.c@…>, 12 years ago)

Suppress over-formatting when invoking bjam --show-libraries

  • bootstrap.sh

     
    233233
    234234# If there is a list of libraries
    235235if test "x$flag_show_libraries" = xyes; then
    236   libraries=`$BJAM -d0 --show-libraries`
    237236  cat <<EOF
    238237
    239238The following Boost libraries have portions that require a separate build
     
    242241
    243242The Boost libraries requiring separate building and installation are:
    244243EOF
    245   for lib in $libraries
    246   do
    247     echo "         $lib"
    248   done
     244  $BJAM -d0 --show-libraries | grep '^\s*-'
    249245  exit 0
    250246fi
    251247