From cd8b52a494cb7b60117f8bfafaba66e37d70a8c3 Mon Sep 17 00:00:00 2001 From: Dane Springmeyer Date: Tue, 12 Oct 2010 05:36:26 +0000 Subject: [PATCH] fix sytax --- SConstruct | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/SConstruct b/SConstruct index 1d8822e71..4cc9f8f2c 100644 --- a/SConstruct +++ b/SConstruct @@ -893,12 +893,12 @@ if not preconfigured: if env['THREADING'] == 'multi': BOOST_LIBSHEADERS.append(['thread', 'boost/thread/mutex.hpp', True]) - # on solaris the configure checks for boost_thread - # require the -pthreads flag to be able to check for - # threading support, so we add as a global library instead - # of attaching to cxxflags after configure - if env['PLATFORM'] == 'SunOS': - env.Append(LIBS = '-pthreads') + # on solaris the configure checks for boost_thread + # require the -pthreads flag to be able to check for + # threading support, so we add as a global library instead + # of attaching to cxxflags after configure + if env['PLATFORM'] == 'SunOS': + env.Append(LIBS = '-pthreads') # if requested, sort LIBPATH and CPPPATH before running CheckLibWithHeader tests