[30512] in CVS-changelog-for-Kerberos-V5

home help back first fref pref prev next nref lref last post

krb5 commit: Fix Python fallback in configure.ac

daemon@ATHENA.MIT.EDU (Greg Hudson)
Tue May 28 11:05:57 2019

Date: Tue, 28 May 2019 11:05:42 -0400
From: Greg Hudson <ghudson@mit.edu>
Message-ID: <201905281505.x4SF5gGh017317@drugstore.mit.edu>
To: <cvs-krb5@mit.edu>
MIME-Version: 1.0
Reply-To: krbdev@mit.edu
Content-Type: text/plain; charset="us-ascii"
Content-Transfer-Encoding: 7bit
Errors-To: cvs-krb5-bounces@mit.edu

https://github.com/krb5/krb5/commit/b7c260b22c5d815b83ff37a35569e07e847cd9c3
commit b7c260b22c5d815b83ff37a35569e07e847cd9c3
Author: Greg Hudson <ghudson@mit.edu>
Date:   Tue May 28 10:55:56 2019 -0400

    Fix Python fallback in configure.ac
    
    Commit 2bd410ecdb366083fe9b4e5f6ac4b741b624230b (ticket 8709)
    contained a typo "text" for "test", preventing the Python path check
    from falling back from python2 to python.  This is now a fallback from
    python3 to python, but the typo remains.  Fix it now.
    
    Based on a patch by Michael Osipov.
    
    ticket: 8810 (new)
    tags: pullup
    target_version: 1.17-next

 src/configure.ac |    2 +-
 1 files changed, 1 insertions(+), 1 deletions(-)

diff --git a/src/configure.ac b/src/configure.ac
index 9bafee7..179cad0 100644
--- a/src/configure.ac
+++ b/src/configure.ac
@@ -1143,7 +1143,7 @@ AC_SUBST(HAVE_RUNTEST)
 
 # For Python tests.
 AC_CHECK_PROG(PYTHON,python3,python3)
-if text x"$PYTHON" = x; then
+if test x"$PYTHON" = x; then
 	AC_CHECK_PROG(PYTHON,python,python)
 fi
 HAVE_PYTHON=no
_______________________________________________
cvs-krb5 mailing list
cvs-krb5@mit.edu
https://mailman.mit.edu/mailman/listinfo/cvs-krb5

home help back first fref pref prev next nref lref last post