0
0
mirror of https://github.com/mongodb/mongo.git synced 2024-12-01 09:32:32 +01:00

fix 32bit ubuntu

This commit is contained in:
Eliot Horowitz 2009-08-29 21:17:34 -04:00
parent cbf26c5b21
commit 42eae6ab4c

View File

@ -4,7 +4,7 @@ import os
def insert( env , options ):
if not foundxulrunner( env , options ):
myenv.Append( CPPDEFINES=[ "MOZJS" ] )
env.Append( CPPDEFINES=[ "MOZJS" ] )
def foundxulrunner( env , options ):
@ -29,8 +29,8 @@ def foundxulrunner( env , options ):
libroot += "64";
libroot += "/" + best
if not os.path.exists( "/usr/lib64/" + best ):
print( "warning: found xulrunner include but not lib" )
if not os.path.exists( libroot ):
print( "warning: found xulrunner include but not lib for: " + best )
return False
env.Prepend( LIBPATH=[ libroot ] )