diff options
author | Eliot Horowitz <eliot@10gen.com> | 2010-04-15 11:49:16 -0400 |
---|---|---|
committer | Eliot Horowitz <eliot@10gen.com> | 2010-04-15 11:49:16 -0400 |
commit | 550f0209728c7010e7223cc757046ac152a3513b (patch) | |
tree | 643e6a0499e0bac8f57fa277aebfa618419322dc /buildscripts/hacks_ubuntu.py | |
parent | d72a7fcfcaf4e14d837f07b3b8205a9f19543f91 (diff) | |
download | mongo-550f0209728c7010e7223cc757046ac152a3513b.tar.gz |
ugly hacks for xulrunner
Diffstat (limited to 'buildscripts/hacks_ubuntu.py')
-rw-r--r-- | buildscripts/hacks_ubuntu.py | 5 |
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 |