summaryrefslogtreecommitdiff
path: root/SConstruct
diff options
context:
space:
mode:
authorMike Dirolf <mike@10gen.com>2009-07-22 13:42:21 -0400
committerMike Dirolf <mike@10gen.com>2009-07-22 13:42:21 -0400
commitba2dfa64415606d334245c7076cb368ab2910b8f (patch)
tree642b4d81e2929e7684f1e14188948f46065dc27d /SConstruct
parent086ec004b63818692e5567e8a8ccbf7c22751d20 (diff)
downloadmongo-ba2dfa64415606d334245c7076cb368ab2910b8f.tar.gz
minor: whitespace
Diffstat (limited to 'SConstruct')
-rw-r--r--SConstruct10
1 files changed, 5 insertions, 5 deletions
diff --git a/SConstruct b/SConstruct
index d68592064a4..927327e1c1e 100644
--- a/SConstruct
+++ b/SConstruct
@@ -178,7 +178,7 @@ darwin = False
windows = False
freebsd = False
solaris = False
-force64 = not GetOption( "force64" ) is None
+force64 = not GetOption( "force64" ) is None
if not force64 and os.getcwd().endswith( "mongo-64" ):
force64 = True
print( "*** assuming you want a 64-bit build b/c of directory *** " )
@@ -212,7 +212,7 @@ if GetOption( "extrapath" ) is not None:
env.Append( CPPPATH=[ x + "/include" ] )
env.Append( LIBPATH=[ x + "/lib" ] )
release = True
-
+
# ------ SOURCE FILE SETUP -----------
commonFiles = Split( "stdafx.cpp buildinfo.cpp db/jsobj.cpp db/json.cpp db/commands.cpp db/lasterror.cpp db/nonce.cpp db/queryutil.cpp shell/mongo.cpp" )
@@ -336,7 +336,7 @@ elif "linux2" == os.sys.platform:
nixLibPrefix = "lib64"
env.Append( LIBPATH=["/usr/lib64" , "/lib64" ] )
env.Append( LIBS=["pthread"] )
-
+
if force64:
print( "error: force64 doesn't make sense on a 64-bit machine" )
Exit(1)
@@ -1130,13 +1130,13 @@ def installBinary( e , name ):
name += ".exe"
inst = e.Install( installDir + "/bin" , name )
-
+
fullInstallName = installDir + "/bin/" + name
allBinaries += [ name ]
if solaris or linux:
e.AddPostAction( inst, e.Action( 'strip ' + fullInstallName ) )
-
+
if linux and len( COMMAND_LINE_TARGETS ) == 1 and str( COMMAND_LINE_TARGETS[0] ) == "s3dist":
e.AddPostAction( inst , checkGlibc )