From: Daniel Gustafsson Date: Sat, 21 May 2022 13:34:24 +0000 (+0200) Subject: configure: use the SED value to invoke sed X-Git-Tag: curl-7_84_0~155 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=5b9770e5fc95bbaa2ebfe360c6df48ad50632e6d;p=thirdparty%2Fcurl.git configure: use the SED value to invoke sed Rather than assuming sed in PATH, use the resolved $SED variable like in all other invocations of sed in configure. Closes: #8891 Reviewed-by: Daniel Stenberg Reviewed-by: Marcel Raad --- diff --git a/configure.ac b/configure.ac index d24daeab80..f89c266c9b 100644 --- a/configure.ac +++ b/configure.ac @@ -728,7 +728,7 @@ if test X"$want_hyper" != Xno; then AC_MSG_NOTICE([Added $DIR_HYPER to CURL_LIBRARY_PATH]), ) ], - for d in `echo $DIR_HYPER | sed -e 's/:/ /'`; do + for d in `echo $DIR_HYPER | $SED -e 's/:/ /'`; do if test -f "$d/libhyper.a"; then AC_MSG_ERROR([hyper was found in $d but was probably built with wrong flags. See docs/HYPER.md.]) fi