summaryrefslogtreecommitdiff
path: root/SConstruct
diff options
context:
space:
mode:
authorSampo Savolainen <v2@iki.fi>2008-05-20 17:34:47 +0000
committerSampo Savolainen <v2@iki.fi>2008-05-20 17:34:47 +0000
commitef2245a23afef4cf615f457c46e12495bc3b7642 (patch)
tree4ba3ca7e6be8bc5bc188cba97aa15da39d21b71e /SConstruct
parent50d464486d9497f2d146b1f7019b913e7a86d261 (diff)
Add note about the bug causing scons to miss installed boost headers.
git-svn-id: svn://localhost/ardour2/branches/2.0-ongoing@3371 d708f5d6-7413-0410-9779-e7cbd77b26cf
Diffstat (limited to 'SConstruct')
-rw-r--r--SConstruct2
1 files changed, 1 insertions, 1 deletions
diff --git a/SConstruct b/SConstruct
index 2e09c25328..d4aab6f04f 100644
--- a/SConstruct
+++ b/SConstruct
@@ -937,7 +937,7 @@ prep_libcheck(env, libraries['boost'])
libraries['boost'].Append(CPPPATH="/usr/local/include", LIBPATH="/usr/local/lib")
conf = Configure (libraries['boost'])
if conf.CheckHeader ('boost/shared_ptr.hpp', language='CXX') == False:
- print "Boost header files do not appear to be installed."
+ print "Boost header files do not appear to be installed. You also might be running a buggy version of scons. Try scons 0.97 if you can."
sys.exit (1)
libraries['boost'] = conf.Finish ()