summaryrefslogtreecommitdiff
path: root/buildscripts
diff options
context:
space:
mode:
authorEliot Horowitz <eliot@10gen.com>2010-01-27 11:25:57 -0500
committerEliot Horowitz <eliot@10gen.com>2010-01-27 11:25:57 -0500
commitcfe572adffb61b278d1b80bee2fdbdaecf637ab9 (patch)
treedc3bb2e551ae7e2ae403f99418ebb806ce54adca /buildscripts
parenta3d3ab96cf81945dc0b39c236a19b0764351767b (diff)
downloadmongo-cfe572adffb61b278d1b80bee2fdbdaecf637ab9.tar.gz
fix some xurlunner versions
Diffstat (limited to 'buildscripts')
-rw-r--r--buildscripts/hacks_ubuntu.py2
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