Boost logo

Boost-Build :

Subject: [Boost-build] Request for change to build-system.jam
From: Nogradi, Chris (Chris.Nogradi_at_[hidden])
Date: 2012-03-14 15:36:39


I would like to see the following change made to build-system.jam:

    # We always load project in "." so that 'use-project' directives have any
    # chance of being seen. Otherwise, we would not be able to refer to
    # subprojects using target ids.
    local current-project ;
    if [ project.find "." : "." ]
    {
        current-project = [ project.target [ project.load "." ] ] ;
    }
    else
    {
        project.act-as-jamfile __cwd__ : "." ;
    }

Without the additional else case above, if there isn't a jam file in the current working directory, the environment is not properly setup before processing the command line arguments and could potentially fail when validating command line properties. This additional line forces the jamroot.jam file to get loaded. Is this change reasonable? Can it or something similar be added to the next release? This change effectively allows bjam to be run from anywhere in the source tree not just where a jam file exists (though this will work in most cases unless a property is specified on the command line that is not part of the default boost.build properties).

Thanks,

Chris

________________________________
This e-mail and any attachments may contain confidential material for the sole use of the intended recipient. If you are not the intended recipient, please be aware that any disclosure, copying, distribution or use of this e-mail or any attachment is prohibited. If you have received this e-mail in error, please contact the sender and delete all copies.

Thank you for your cooperation.



Boost-Build 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