diff options
author | Daniel Gustafsson <daniel@yesql.se> | 2022-05-21 15:34:24 +0200 |
---|---|---|
committer | Daniel Gustafsson <daniel@yesql.se> | 2022-05-21 15:34:24 +0200 |
commit | 5b9770e5fc95bbaa2ebfe360c6df48ad50632e6d (patch) | |
tree | 3e4ae708632b1cbc4b9897f4f72a039581f6cd71 | |
parent | 8ea851b29d4beb73808b4c8cc502c0cdd33b6142 (diff) | |
download | curl-5b9770e5fc95bbaa2ebfe360c6df48ad50632e6d.tar.gz |
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 <daniel@haxx.se>
Reviewed-by: Marcel Raad <Marcel.Raad@teamviewer.com>
-rw-r--r-- | configure.ac | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/configure.ac b/configure.ac index d24daeab8..f89c266c9 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 |