summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorEliot Horowitz <eliot@10gen.com>2009-05-28 11:16:19 -0400
committerEliot Horowitz <eliot@10gen.com>2009-05-28 11:16:19 -0400
commita9111e4fceebb696718a3e49d7bdc50219972159 (patch)
tree6b44b9105c59c81cb6c330d120d02372dede84fc
parenta63a8031601b319c4fee02fc894da41bfd4439a8 (diff)
downloadmongo-a9111e4fceebb696718a3e49d7bdc50219972159.tar.gz
make scons more portable MINOR
-rw-r--r--SConstruct4
1 files changed, 2 insertions, 2 deletions
diff --git a/SConstruct b/SConstruct
index c366a29435b..8ba9c47ab9c 100644
--- a/SConstruct
+++ b/SConstruct
@@ -664,7 +664,7 @@ def removeIfInList( lst , thing ):
clientEnv = env.Clone();
clientEnv.Append( CPPPATH=["../"] )
-clientEnv.Prepend( LIBS=[ "libmongoclient.a"] )
+clientEnv.Prepend( LIBS=[ "mongoclient"] )
clientEnv.Append( LIBPATH=["."] )
l = clientEnv[ "LIBS" ]
removeIfInList( l , "pcre" )
@@ -672,7 +672,7 @@ removeIfInList( l , "pcrecpp" )
testEnv = env.Clone()
testEnv.Append( CPPPATH=["../"] )
-testEnv.Prepend( LIBS=[ "libmongotestfiles.a" , "unittest" ] )
+testEnv.Prepend( LIBS=[ "mongotestfiles" , "unittest" ] )
testEnv.Append( LIBPATH=["."] )