From 9cd285f1b53e2dbe9f699b0f8696cd61725e245d Mon Sep 17 00:00:00 2001 From: Bob Halley Date: Sat, 8 Oct 2016 16:36:58 -0700 Subject: [PATCH] make python 3 default for kitting --- Makefile | 7 +++---- 1 file changed, 3 insertions(+), 4 deletions(-) diff --git a/Makefile b/Makefile index cb969593..845abd3d 100644 --- a/Makefile +++ b/Makefile @@ -16,6 +16,7 @@ # $Id: Makefile,v 1.16 2004/03/19 00:17:27 halley Exp $ PYTHON=python +PYTHON3=python3 all: ${PYTHON} ./setup.py build @@ -48,9 +49,7 @@ docclean: rm -rf html.tar.gz html.zip html kits: - ${PYTHON} ./setup.py sdist --formats=gztar,zip -# ${PYTHON} ./setup.py bdist_wininst -# ${PYTHON} ./setup.py bdist_rpm + ${PYTHON3} ./setup.py sdist --formats=gztar,zip bdist_wheel tags: find . -name '*.py' -print | etags - @@ -64,7 +63,7 @@ test2: cd tests; make PYTHON=python test test3: - cd tests; make PYTHON=python3 test + cd tests; make PYTHON=${PYTHON3} test lint: pylint dns tests examples/*.py -- 2.47.3