diff options
author | Eliot Horowitz <eliot@10gen.com> | 2009-05-18 10:22:51 -0400 |
---|---|---|
committer | Eliot Horowitz <eliot@10gen.com> | 2009-05-18 10:22:51 -0400 |
commit | cf4ffb99b4526822ddad9510413bbaf484f6023b (patch) | |
tree | 718b10f2067635753468bccbbaabfab3504dca88 | |
parent | 738607b8348b17261a8a14620948d3615a2fcf27 (diff) | |
download | mongo-cf4ffb99b4526822ddad9510413bbaf484f6023b.tar.gz |
add /usr/lib back into lib search path for mongo on 64-bit mac
-rw-r--r-- | SConstruct | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/SConstruct b/SConstruct index 254b07d56d6..fa4778bb09f 100644 --- a/SConstruct +++ b/SConstruct @@ -724,7 +724,7 @@ elif not onlyServer: shellEnv["CPPPATH"].remove( "/usr/64/include" ) shellEnv["LIBPATH"].remove( "/usr/64/lib" ) shellEnv.Append( CPPPATH=[ "/sw/include" , "/opt/local/include"] ) - shellEnv.Append( LIBPATH=[ "/sw/lib/", "/opt/local/lib"] ) + shellEnv.Append( LIBPATH=[ "/sw/lib/", "/opt/local/lib" , "/usr/lib" ] ) l = shellEnv["LIBS"] if linux64: |