diff options
author | Eliot Horowitz <eliot@10gen.com> | 2010-01-27 11:25:57 -0500 |
---|---|---|
committer | Eliot Horowitz <eliot@10gen.com> | 2010-01-27 11:25:57 -0500 |
commit | cfe572adffb61b278d1b80bee2fdbdaecf637ab9 (patch) | |
tree | dc3bb2e551ae7e2ae403f99418ebb806ce54adca /buildscripts | |
parent | a3d3ab96cf81945dc0b39c236a19b0764351767b (diff) | |
download | mongo-cfe572adffb61b278d1b80bee2fdbdaecf637ab9.tar.gz |
fix some xurlunner versions
Diffstat (limited to 'buildscripts')
-rw-r--r-- | buildscripts/hacks_ubuntu.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/buildscripts/hacks_ubuntu.py b/buildscripts/hacks_ubuntu.py index ab03ba91e4a..56649f89355 100644 --- a/buildscripts/hacks_ubuntu.py +++ b/buildscripts/hacks_ubuntu.py @@ -42,6 +42,6 @@ def foundxulrunner( env , options ): incroot + "unstable/" ] ) env.Append( CPPDEFINES=[ "XULRUNNER" , "OLDJS" ] ) - if best.find( "1.9" ) >= 0: + if best.find( "1.9.0" ) >= 0 or best.endswith("1.9"): env.Append( CPPDEFINES=[ "XULRUNNER190" ] ) return True |