From ce51ed822ddd4d32d12b8724ac3b53bbd39c7a3f Mon Sep 17 00:00:00 2001 From: Nathan Letwory Date: Thu, 15 Jul 2004 17:47:43 +0000 Subject: [PATCH] Make sure that the hex value is checked as a hexvalue. On some systems this was apparently a problem. --- SConstruct | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/SConstruct b/SConstruct index 032a1234675..71c62dbc6be 100644 --- a/SConstruct +++ b/SConstruct @@ -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"