Welcome to mirror list, hosted at ThFree Co, Russian Federation.

git.blender.org/blender.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorNathan Letwory <nathan@letworyinteractive.com>2004-07-15 21:47:43 +0400
committerNathan Letwory <nathan@letworyinteractive.com>2004-07-15 21:47:43 +0400
commitce51ed822ddd4d32d12b8724ac3b53bbd39c7a3f (patch)
tree308fd9d3dd6aacd0aab2a3633c8f0bda10f46037 /SConstruct
parent700d9c5559080613200a24d7791545df159c2daf (diff)
Make sure that the hex value is checked as a hexvalue. On some systems this was apparently a problem.
Diffstat (limited to 'SConstruct')
-rw-r--r--SConstruct2
1 files changed, 1 insertions, 1 deletions
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"