summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorChris Johns <chrisj@rtems.org>2020-03-04 09:20:19 +1100
committerChris Johns <chrisj@rtems.org>2020-03-04 09:20:19 +1100
commitba97e7c5afc36da1b1621f4d9d85601ab271ab4e (patch)
treeb9f41b69cf9261b56866496ef532fdfa2c654e56
parent834a0ea88a48dbe296d07e65436df27ec1f19942 (diff)
sb/python-wrapper: Add python2.7 to aid testing
-rw-r--r--source-builder/sb/python-wrapper.sh2
1 files changed, 1 insertions, 1 deletions
diff --git a/source-builder/sb/python-wrapper.sh b/source-builder/sb/python-wrapper.sh
index c1b62d2..c736a66 100644
--- a/source-builder/sb/python-wrapper.sh
+++ b/source-builder/sb/python-wrapper.sh
@@ -21,7 +21,7 @@ if test ! -f $PYTHON_CMD; then
echo "error: python command not found: $PYTHON_CMD"
exit 5
fi
-for py in python2 python3 python
+for py in python2 python2.7 python3 python
do
set +e
py_cmd=$(command -v $py)