From: Greg Hudson Date: Sat, 24 Apr 2010 16:39:49 +0000 (+0000) Subject: Fix the actual python command to match the displayed one in the X-Git-Tag: krb5-1.9-beta1~267 X-Git-Url: http://git.tremily.us/?a=commitdiff_plain;h=d67798fd6618ecee493f6cb1b150e4ebdf35e3f1;p=krb5.git 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 --- diff --git a/src/config/post.in b/src/config/post.in index 861117c9e..d25484910 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