Opened 12 years ago

Closed 12 years ago

#4691 closed Patches (fixed)

Wrong formatting for "bootstrap.sh --show-libraries"

Reported by: Cedric Le Dillau <ld.c@…> 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)

bootstrap_showlibraries.patch (614 bytes ) - added by Cedric Le Dillau <ld.c@…> 12 years ago.
Suppress over-formatting when invoking bjam --show-libraries

Download all attachments as: .zip

Change History (3)

by Cedric Le Dillau <ld.c@…>, 12 years ago

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

comment:1 by Vladimir Prus, 12 years ago

This was checked in as r65852, thanks! (For unknown reasons, Trac was not automatically updated when checkin happened)

comment:2 by Vladimir Prus, 12 years ago

Resolution: fixed
Status: newclosed
Note: See TracTickets for help on using tickets.