]> git.ipfire.org Git - thirdparty/bind9.git/commitdiff
fixed test == bugs for PYTHON
authorFrancis Dupont <fdupont@isc.org>
Fri, 17 Apr 2015 03:02:28 +0000 (05:02 +0200)
committerFrancis Dupont <fdupont@isc.org>
Fri, 17 Apr 2015 03:02:28 +0000 (05:02 +0200)
configure
configure.in

index 816cc0820b86a3ad991a172307563680186f5f56..ee02173b3d72983f4184aba3a6e3e0bef93d6ae2 100755 (executable)
--- a/configure
+++ b/configure
@@ -11843,7 +11843,7 @@ fi
   test -n "$PYTHON" && break
 done
 
-                               if test "X$PYTHON" == "X"; then
+                               if test "X$PYTHON" = "X"; then
                                        continue;
                                fi
                                { $as_echo "$as_me:${as_lineno-$LINENO}: checking python module 'argparse'" >&5
@@ -11858,7 +11858,7 @@ $as_echo "not found" >&6; }
                                unset ac_cv_path_PYTHON
                                unset PYTHON
                        done
-                       if test "X$PYTHON" == "X"
+                       if test "X$PYTHON" = "X"
                        then
                                { $as_echo "$as_me:${as_lineno-$LINENO}: checking for python support" >&5
 $as_echo_n "checking for python support... " >&6; }
index 26a7f4b2bda568700c91c992f927d4121184d6b2..80a8231761f5fe854d7ad77e59de7125a98ac178 100644 (file)
@@ -236,7 +236,7 @@ case "$use_python" in
                        for p in $python
                        do
                                AC_PATH_PROGS(PYTHON, $p)
-                               if test "X$PYTHON" == "X"; then
+                               if test "X$PYTHON" = "X"; then
                                        continue;
                                fi
                                AC_MSG_CHECKING([python module 'argparse'])
@@ -248,7 +248,7 @@ case "$use_python" in
                                unset ac_cv_path_PYTHON
                                unset PYTHON
                        done
-                       if test "X$PYTHON" == "X"
+                       if test "X$PYTHON" = "X"
                        then
                                AC_MSG_CHECKING([for python support])
                                case "$use_python" in