summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--SConstruct6
1 files changed, 4 insertions, 2 deletions
diff --git a/SConstruct b/SConstruct
index e8015991..edd3cdf4 100644
--- a/SConstruct
+++ b/SConstruct
@@ -91,8 +91,10 @@ website = "http://catb.org/gpsd"
webupload = "login.ibiblio.org:/public/html/catb/gpsd"
# Hosting information ends here
-# gpsd needs at least Pyton version 2.6. Any Python 3 should work.
-EnsureSConsVersion(2, 6, 0)
+# gpsd needs Scons version at least 2.3
+EnsureSConsVersion(2, 3, 0)
+# gpsd needs Python version at least 2.6
+EnsurePythonVersion(2, 6)
PYTHON_SYSCONFIG_IMPORT = 'from distutils import sysconfig'