diff options
author | Christian Heimes <christian@python.org> | 2021-03-27 13:44:04 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-03-27 13:44:04 (GMT) |
commit | 5d6e8c1c1a5f667cdce99cb3c563ac922198678d (patch) | |
tree | a9b3d1b75cdedbf2dccb14f301fa0c361e464e7d /configure | |
parent | 11b85abbae8aaa8410b19f358abd7b401881bb1c (diff) | |
download | cpython-5d6e8c1c1a5f667cdce99cb3c563ac922198678d.zip cpython-5d6e8c1c1a5f667cdce99cb3c563ac922198678d.tar.gz cpython-5d6e8c1c1a5f667cdce99cb3c563ac922198678d.tar.bz2 |
bpo-43617: Check autoconf-archive package in configure.ac (GH-25016)
Signed-off-by: Christian Heimes <christian@python.org>
Diffstat (limited to 'configure')
-rwxr-xr-x | configure | 6 |
1 files changed, 3 insertions, 3 deletions
@@ -1594,7 +1594,7 @@ Optional Packages: --with-ensurepip[=install|upgrade|no] "install" or "upgrade" using bundled pip (default is upgrade) - --with-openssl=DIR override root of the OpenSSL directory to DIR + --with-openssl=DIR root of the OpenSSL directory --with-openssl-rpath=[DIR|auto|no] Set runtime library directory (rpath) for OpenSSL libraries, no (default): don't set rpath, auto: @@ -14571,10 +14571,10 @@ _ACEOF if ac_fn_c_try_compile "$LINENO"; then : -if $GREP noonsees conftest.$ac_objext >/dev/null ; then +if grep noonsees conftest.$ac_objext >/dev/null ; then ax_cv_c_float_words_bigendian=yes fi -if $GREP seesnoon conftest.$ac_objext >/dev/null ; then +if grep seesnoon conftest.$ac_objext >/dev/null ; then if test "$ax_cv_c_float_words_bigendian" = unknown; then ax_cv_c_float_words_bigendian=no else |