SCons: fix the compatibility switch; the new code path should also be used for scons 0.97
This commit is contained in:
parent
6d8f598312
commit
5ee6d375c0
1 changed files with 1 additions and 1 deletions
|
|
@ -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:
|
||||
|
|
|
|||
Loading…
Reference in a new issue