aboutsummaryrefslogtreecommitdiff
path: root/src/Makefile.in
diff options
context:
space:
mode:
authorGreg Hudson <ghudson@mit.edu>2019-07-29 13:21:46 -0400
committerGreg Hudson <ghudson@mit.edu>2019-07-30 10:55:32 -0400
commit1000fb3eb135908bc5b750de912dc9b245ddbff9 (patch)
tree5c62e5df11ab99f1082190a15638310db3213fff /src/Makefile.in
parentb4831515b2f3b6fd7d7fd4bff4558c10c710891d (diff)
downloadkrb5-1000fb3eb135908bc5b750de912dc9b245ddbff9.zip
krb5-1000fb3eb135908bc5b750de912dc9b245ddbff9.tar.gz
krb5-1000fb3eb135908bc5b750de912dc9b245ddbff9.tar.bz2
Convert remaining Python scripts to Python 3
Commit e23d24beacb73581bbf4351250f3955e6fd44361 missed some Python scripts, in part because of the "PYTHON = python" line in src/Makefile.in from commit 7be2ef2b6c8c491781251a5023db48d7690f5fa8. Remove that line and convert the remaining scripts. Also fix the check-pytests-no warning to mention Python 3 instead of Python 2.5.
Diffstat (limited to 'src/Makefile.in')
-rw-r--r--src/Makefile.in5
1 files changed, 2 insertions, 3 deletions
diff --git a/src/Makefile.in b/src/Makefile.in
index 91a5f4b..31135ff 100644
--- a/src/Makefile.in
+++ b/src/Makefile.in
@@ -495,7 +495,7 @@ check-unix: check-lmdb-$(HAVE_LMDB)
cat $(SKIPTESTS)
check-pytests-no: check-postrecurse
- @echo 'Skipped python test scripts: python 2.5 or later required' >> \
+ @echo 'Skipped python test scripts: python 3 required' >> \
$(SKIPTESTS)
check-cmocka-no: check-postrecurse
@@ -567,7 +567,6 @@ coverity prevent cov: Makefiles
FIND = find
XARGS = xargs
EMACS = emacs
-PYTHON = python
INDENTDIRS = \
appl \
@@ -671,7 +670,7 @@ mark-cstyle-bsd:
check-copyright:
(cd $(top_srcdir) && \
$(FIND) . \( -name '*.[ch]' -o -name '*.hin' \) -print0 | \
- $(XARGS) -0 python util/krb5-check-copyright.py)
+ $(XARGS) -0 $(PYTHON) util/krb5-check-copyright.py)
tags: FORCE
(cd $(top_srcdir) && \