From 50186d13204dea5d7c95596f1e9f8cff6bca8a2f Mon Sep 17 00:00:00 2001 From: Steve Reinhardt Date: Fri, 26 Aug 2005 08:18:12 -0400 Subject: Add explicit check for Python version to SConstruct. build/SConstruct: Add explicit check for Python version. --HG-- extra : convert_revision : 19ee788f72d63eb301e4be4c0c5729a5025c379f --- build/SConstruct | 6 ++++++ 1 file changed, 6 insertions(+) (limited to 'build/SConstruct') diff --git a/build/SConstruct b/build/SConstruct index 8819e3649..b03a81c52 100644 --- a/build/SConstruct +++ b/build/SConstruct @@ -45,6 +45,12 @@ import sys import os +# Check for recent-enough Python version +(major, minor) = sys.version_info[:2] +if major < 2 or (major == 2 and minor < 3): + print "Error: M5 requires Python 2.3 or later." + sys.exit(1) + # The absolute path to the current directory (where this file lives). ROOT = Dir('.').abspath -- cgit v1.2.3