Scons: check minor version number (>=0.96.92)

git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@14633 a592a061-630c-0410-9148-cb99ea01b6c8
This commit is contained in:
Bo Peng 2006-08-13 01:51:05 +00:00
parent 6764fe0ee2
commit d7588feb8f

View File

@ -24,8 +24,14 @@ import scons_utils as utils
# scons asks for 1.5.2, lyx requires 2.3
EnsurePythonVersion(2, 3)
# Please use at least 0.96.91 (not 0.96.1)
# Please use at least 0.96.92 (not 0.96.1)
EnsureSConsVersion(0, 96)
# also check for minor version number for scons 0.96
from SCons import __version__
version = map(int, __version__.split('.'))
if version[0] == 0 and version[1] == 96 and version[2] < 92:
print "Scons >= 0.96.92 is required."
Exit(1)
# determine where I am ...
#