Skip to content
Snippets Groups Projects
Commit 70f75bff authored by Piotr Ożarowski's avatar Piotr Ożarowski
Browse files

do not start the check_versions test if /usr/bin/python is not available

parent f96f6711
No related branches found
No related tags found
No related merge requests found
......@@ -36,7 +36,7 @@ dist_fallback:
make -C pydist $@
check_versions:
@PYTHONPATH=. set -e; \
@PYTHONPATH=. set -e; test ! -x /usr/bin/python || \
DEFAULT=`python -c 'import debpython.version as v; print v.vrepr(v.DEFAULT)'`;\
SUPPORTED=`python -c 'import debpython.version as v; print " ".join(sorted(v.vrepr(v.SUPPORTED)))'`;\
DEB_DEFAULT=`sed -rn 's,^default-version = python([0.9.]*),\1,p' debian/debian_defaults`;\
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment