Boost logo

Boost-Commit :

Subject: [Boost-commit] svn:boost r83771 - trunk/tools/build/v2/build
From: steven_at_[hidden]
Date: 2013-04-04 16:39:55


Author: steven_watanabe
Date: 2013-04-04 16:39:54 EDT (Thu, 04 Apr 2013)
New Revision: 83771
URL: http://svn.boost.org/trac/boost/changeset/83771

Log:
Fix header search.
Text files modified:
   trunk/tools/build/v2/build/ac.jam | 6 +++---
   1 files changed, 3 insertions(+), 3 deletions(-)

Modified: trunk/tools/build/v2/build/ac.jam
==============================================================================
--- trunk/tools/build/v2/build/ac.jam (original)
+++ trunk/tools/build/v2/build/ac.jam 2013-04-04 16:39:54 EDT (Thu, 04 Apr 2013)
@@ -182,10 +182,10 @@
             }
             libnames ?= $(self.default-names) ;
 
- local includes = $(self.include-path) ;
- if ! $(includes) && $(use-environment)
+ local include-path = $(self.include-path) ;
+ if ! $(include-path) && $(use-environment)
             {
- includes = [ modules.peek : $(name:U)_INCLUDE ] ;
+ include-path = [ modules.peek : $(name:U)_INCLUDE ] ;
             }
 
             local library-path = $(self.library-path) ;


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