From: Mark Andrews Date: Fri, 29 Jul 2016 13:55:52 +0000 (+1000) Subject: remove spurious breaks X-Git-Tag: v9.12.0a0~128 X-Git-Url: http://git.ipfire.org/gitweb/?a=commitdiff_plain;h=e95391abd4f51582ebd69d7482b5c715946033a1;p=thirdparty%2Fbind9.git remove spurious breaks --- diff --git a/configure b/configure index 7554d263cc4..09227423fba 100755 --- a/configure +++ b/configure @@ -11988,7 +11988,6 @@ $as_echo_n "checking python module 'argparse'... " >&6; } if ${PYTHON:-false} -c "$testargparse"; then { $as_echo "$as_me:${as_lineno-$LINENO}: result: found, using $PYTHON" >&5 $as_echo "found, using $PYTHON" >&6; } - break else as_fn_error $? "not found" "$LINENO" 5 fi @@ -11997,7 +11996,6 @@ $as_echo_n "checking python module 'ply'... " >&6; } if ${PYTHON:-false} -c "$testply"; then { $as_echo "$as_me:${as_lineno-$LINENO}: result: found, using $PYTHON" >&5 $as_echo "found, using $PYTHON" >&6; } - break else as_fn_error $? "not found" "$LINENO" 5 fi diff --git a/configure.in b/configure.in index d81388eea3c..d3509c0a3b9 100644 --- a/configure.in +++ b/configure.in @@ -275,14 +275,12 @@ case "$use_python" in AC_MSG_CHECKING([python module 'argparse']) if ${PYTHON:-false} -c "$testargparse"; then AC_MSG_RESULT([found, using $PYTHON]) - break else AC_MSG_ERROR([not found]) fi AC_MSG_CHECKING([python module 'ply']) if ${PYTHON:-false} -c "$testply"; then AC_MSG_RESULT([found, using $PYTHON]) - break else AC_MSG_ERROR([not found]) fi