summaryrefslogtreecommitdiff
path: root/SConstruct
diff options
context:
space:
mode:
authorKaloian Manassiev <kaloian.manassiev@mongodb.com>2014-02-10 16:50:00 -0500
committerKaloian Manassiev <kaloian.manassiev@mongodb.com>2014-02-25 13:49:42 -0500
commit78b54a037a0ddcfde7c75e3d7d13f70f760246d3 (patch)
tree94522c0b53bb6f1490dbfa0033b26eb03943dfd9 /SConstruct
parent0b4ee727db118d01f28cb046c23068d4961990fe (diff)
downloadmongo-78b54a037a0ddcfde7c75e3d7d13f70f760246d3.tar.gz
Do not include cpppath/extrapath/libpath when generating output location
Otherwise, if libraries are used which have deeper paths, the ouput path becomes really long and builds fail due to excessively long command line.
Diffstat (limited to 'SConstruct')
-rw-r--r--SConstruct10
1 files changed, 5 insertions, 5 deletions
diff --git a/SConstruct b/SConstruct
index 197c82cd772..db5659525a7 100644
--- a/SConstruct
+++ b/SConstruct
@@ -210,12 +210,12 @@ add_option( "cxx-use-shell-environment", "use $CXX from shell for C++ compiler"
add_option( "ld", "linker to use" , 1 , True )
add_option( "c++11", "enable c++11 support (experimental)", 0, True )
-add_option( "cpppath", "Include path if you have headers in a nonstandard directory" , 1 , True )
-add_option( "libpath", "Library path if you have libraries in a nonstandard directory" , 1 , True )
+add_option( "cpppath", "Include path if you have headers in a nonstandard directory" , 1 , False )
+add_option( "libpath", "Library path if you have libraries in a nonstandard directory" , 1 , False )
-add_option( "extrapath", "comma separated list of add'l paths (--extrapath /opt/foo/,/foo) static linking" , 1 , True )
-add_option( "extrapathdyn", "comma separated list of add'l paths (--extrapath /opt/foo/,/foo) dynamic linking" , 1 , True )
-add_option( "extralib", "comma separated list of libraries (--extralib js_static,readline" , 1 , True )
+add_option( "extrapath", "comma separated list of add'l paths (--extrapath /opt/foo/,/foo) static linking" , 1 , False )
+add_option( "extrapathdyn", "comma separated list of add'l paths (--extrapath /opt/foo/,/foo) dynamic linking" , 1 , False )
+add_option( "extralib", "comma separated list of libraries (--extralib js_static,readline" , 1 , False )
add_option( "no-glibc-check" , "don't check for new versions of glibc" , 0 , False )