From 5ee6d375c0756c8ba589f88740a7aa4da600b46b Mon Sep 17 00:00:00 2001 From: Ichthyostega Date: Tue, 20 Jan 2009 02:38:13 +0100 Subject: [PATCH] SCons: fix the compatibility switch; the new code path should also be used for scons 0.97 --- admin/scons/LumieraEnvironment.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/admin/scons/LumieraEnvironment.py b/admin/scons/LumieraEnvironment.py index d8aeed54e..56fd81a81 100644 --- a/admin/scons/LumieraEnvironment.py +++ b/admin/scons/LumieraEnvironment.py @@ -89,7 +89,7 @@ class LumieraEnvironment(Environment): #### temporary pre 1.0 SCons compatibility hack #### _ver = map(int, SCons.__version__.split('.')[:2]) -_old = (_ver[0]<1 and _ver[1]<98) +_old = (_ver[0]<1 and _ver[1]<97) if _old: ConfigBase = SCons.SConf.SConf else: