From 2fb758a366a6f43ba00aac4fd1cabb6282e45363 Mon Sep 17 00:00:00 2001 From: Steven Watanabe Date: Thu, 4 Apr 2013 20:39:54 +0000 Subject: [PATCH] Fix header search. [SVN r83771] --- src/build/ac.jam | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/build/ac.jam b/src/build/ac.jam index c8a890291..10bcd8f95 100644 --- a/src/build/ac.jam +++ b/src/build/ac.jam @@ -182,10 +182,10 @@ class ac-library : basic-target } 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) ;