diff options
author | Eliot Horowitz <eliot@10gen.com> | 2009-02-11 21:54:20 -0500 |
---|---|---|
committer | Eliot Horowitz <eliot@10gen.com> | 2009-02-11 21:54:20 -0500 |
commit | c8dacdb3974b40e58ea076d94b5a2af645f8820f (patch) | |
tree | 7d33849bce56758cdce1cd8ca14c5b5c7eb2c6f7 /SConstruct | |
parent | 774eeb8cb33b8438ce8130109ba40ce64730ca0e (diff) | |
download | mongo-c8dacdb3974b40e58ea076d94b5a2af645f8820f.tar.gz |
order matters
Diffstat (limited to 'SConstruct')
-rw-r--r-- | SConstruct | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/SConstruct b/SConstruct index f6ac752dc56..17867a2278f 100644 --- a/SConstruct +++ b/SConstruct @@ -578,9 +578,10 @@ elif not onlyServer: shellEnv.VariantDir( "32bit" , "." ) else: shellEnv.Append( LIBPATH=[ "." ] ) - shellEnv.Append( LIBS=[ "mongoclient"] ) shellEnv = doConfigure( shellEnv , needPcre=False , needJava=False , shell=True ) + + shellEnv.Append( LIBS=[ "mongoclient"] ) if weird: shellEnv.Program( "mongo" , shell32BitFiles ) |