Boost logo

Boost-Commit :

From: jurko.gospodnetic_at_[hidden]
Date: 2008-08-30 20:17:23


Author: jurko
Date: 2008-08-30 20:17:22 EDT (Sat, 30 Aug 2008)
New Revision: 48481
URL: http://svn.boost.org/trac/boost/changeset/48481

Log:
Corrected a slight internal defect in Boost Build's tools/package.jam module. There some properties getting passed to stage rules were getting constructed incorrectly (had an extra grist component) and the code did work but purely by accident.
Text files modified:
   trunk/tools/build/v2/tools/package.jam | 2 ++
   1 files changed, 2 insertions(+), 0 deletions(-)

Modified: trunk/tools/build/v2/tools/package.jam
==============================================================================
--- trunk/tools/build/v2/tools/package.jam (original)
+++ trunk/tools/build/v2/tools/package.jam 2008-08-30 20:17:22 EDT (Sat, 30 Aug 2008)
@@ -45,6 +45,7 @@
     # what is needed.
     local install-source-root = [ property.select <install-source-root> :
         $(requirements) ] ;
+ install-source-root = $(install-source-root:G=) ;
     requirements = [ property.change $(requirements) : <install-source-root> ] ;
 
     local install-header-subdir = [ property.select <install-header-subdir> :
@@ -58,6 +59,7 @@
     # given.
     local prefix = [ option.get prefix : [ property.select
         <install-default-prefix> : $(requirements) ] ] ;
+ prefix = $(prefix:G=) ;
     requirements = [ property.change $(requirements) : <install-default-prefix>
         ] ;
     # Or some likely defaults if neither is given.


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