aboutsummaryrefslogtreecommitdiffstats
path: root/tools/check/check_python
diff options
context:
space:
mode:
Diffstat (limited to 'tools/check/check_python')
-rwxr-xr-xtools/check/check_python13
1 files changed, 0 insertions, 13 deletions
diff --git a/tools/check/check_python b/tools/check/check_python
deleted file mode 100755
index ca687a7b32..0000000000
--- a/tools/check/check_python
+++ /dev/null
@@ -1,13 +0,0 @@
-#!/bin/sh
-# CHECK-BUILD CHECK-INSTALL
-
-. ./funcs.sh
-
-if test -z ${PYTHON}; then
- PYTHON=python
-fi
-
-${PYTHON} -c '
-import sys
-sys.exit(sys.version_info[0] < 2 or sys.version_info[1] < 3)
-' || fail "need python version >= 2.3"