From 5cd8cce5310ea0033c5914329a3d117a7ea34a6f Mon Sep 17 00:00:00 2001 From: Dave Abrahams Date: Tue, 9 Sep 2003 02:42:17 +0000 Subject: [PATCH] Set up BOOST_ROOT before import python has a chance to use it. [SVN r19974] --- example/Jamrules | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/example/Jamrules b/example/Jamrules index 80946472..9819a6e3 100755 --- a/example/Jamrules +++ b/example/Jamrules @@ -3,4 +3,5 @@ # Edit this path to point at the root directory of your Boost # installation. Absolute paths work, too. -project boost : ../../.. ; +path-global BOOST_ROOT : ../../.. ; +project boost : $(BOOST_ROOT) ;