summaryrefslogtreecommitdiff
path: root/buildscripts/hacks_ubuntu.py
diff options
context:
space:
mode:
authorEliot Horowitz <eliot@10gen.com>2010-04-15 11:49:16 -0400
committerEliot Horowitz <eliot@10gen.com>2010-04-15 11:49:16 -0400
commit550f0209728c7010e7223cc757046ac152a3513b (patch)
tree643e6a0499e0bac8f57fa277aebfa618419322dc /buildscripts/hacks_ubuntu.py
parentd72a7fcfcaf4e14d837f07b3b8205a9f19543f91 (diff)
downloadmongo-550f0209728c7010e7223cc757046ac152a3513b.tar.gz
ugly hacks for xulrunner
Diffstat (limited to 'buildscripts/hacks_ubuntu.py')
-rw-r--r--buildscripts/hacks_ubuntu.py5
1 files changed, 4 insertions, 1 deletions
diff --git a/buildscripts/hacks_ubuntu.py b/buildscripts/hacks_ubuntu.py
index 480c6226856..81deddd2fba 100644
--- a/buildscripts/hacks_ubuntu.py
+++ b/buildscripts/hacks_ubuntu.py
@@ -45,5 +45,8 @@ def foundxulrunner( env , options ):
env.Append( CPPDEFINES=[ "XULRUNNER" , "OLDJS" ] )
if best.find( "1.9.0" ) >= 0 or best.endswith("1.9"):
- env.Append( CPPDEFINES=[ "XULRUNNER190" ] )
+ if best.endswith( "1.9.1.9" ):
+ pass
+ else:
+ env.Append( CPPDEFINES=[ "XULRUNNER190" ] )
return True