SCons: fix the compatibility switch; the new code path should also be used for scons 0.97

This commit is contained in:
Fischlurch 2009-01-20 02:38:13 +01:00
parent 6d8f598312
commit 5ee6d375c0

View file

@ -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: