summaryrefslogtreecommitdiffstats
path: root/src/config
diff options
context:
space:
mode:
authorGreg Hudson <ghudson@mit.edu>2010-04-24 16:39:49 +0000
committerGreg Hudson <ghudson@mit.edu>2010-04-24 16:39:49 +0000
commitd67798fd6618ecee493f6cb1b150e4ebdf35e3f1 (patch)
tree06948cdb21874a9048f31549d336738a4a93cfd2 /src/config
parent08eec8918ad086d2b9bd612fb1c90b62d298ec0a (diff)
downloadkrb5-d67798fd6618ecee493f6cb1b150e4ebdf35e3f1.tar.gz
krb5-d67798fd6618ecee493f6cb1b150e4ebdf35e3f1.tar.xz
krb5-d67798fd6618ecee493f6cb1b150e4ebdf35e3f1.zip
Fix the actual python command to match the displayed one in the
check-pytests-yes rule in r23913. git-svn-id: svn://anonsvn.mit.edu/krb5/trunk@23931 dc483132-0cff-0310-8789-dd5450dbe970
Diffstat (limited to 'src/config')
-rw-r--r--src/config/post.in6
1 files changed, 4 insertions, 2 deletions
diff --git a/src/config/post.in b/src/config/post.in
index 861117c9e9..d25484910f 100644
--- a/src/config/post.in
+++ b/src/config/post.in
@@ -139,9 +139,11 @@ check-pytests:: check-pytests-@HAVE_PYTHON@
check-pytests-yes:
@pytests="$(PYTESTS)"; \
for t in $$pytests; do \
- echo PYTHONPATH=$(BUILDTOP):$(top_srcdir)/util VALGRIND="$(VALGRIND)" \
+ echo PYTHONPATH=$(BUILDTOP):$(top_srcdir)/util \
+ VALGRIND="$(VALGRIND)" \
$(PYTHON) $(srcdir)/$$t $(PYTESTFLAGS); \
- PYTHONPATH=`pwd`:$(top_srcdir)/util VALGRIND="$(VALGRIND)" \
+ PYTHONPATH=$(BUILDTOP):$(top_srcdir)/util \
+ VALGRIND="$(VALGRIND)" \
$(PYTHON) $(srcdir)/$$t $(PYTESTFLAGS) || exit 1; \
done