Make sure that the hex value is checked as a hexvalue. On some systems this was apparently a problem.

This commit is contained in:
Nathan Letwory 2004-07-15 17:47:43 +00:00
parent 700d9c5559
commit ce51ed822d

@ -5,7 +5,7 @@ import sys
from distutils import sysconfig
import SCons.Script
if sys.hexversion < 0x2030000:
if hex(sys.hexversion) < 0x2030000:
print ">>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>"
print
print "You need at least Python 2.3 to build Blender with SCons"