From 5b9770e5fc95bbaa2ebfe360c6df48ad50632e6d Mon Sep 17 00:00:00 2001 From: Daniel Gustafsson Date: Sat, 21 May 2022 15:34:24 +0200 Subject: [PATCH] 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 --- configure.ac | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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 -- 2.47.3