From 3f38d892c0e045a59fa94a143b8c684240819919 Mon Sep 17 00:00:00 2001 From: Sascha Schumann Date: Sun, 3 Dec 2000 10:58:18 +0000 Subject: [PATCH] Workaround for these two symptoms: Some sed tools don't match strings which are not terminated with LF. Some shells still support the ^ as a synonym for the pipe character. Submitted by: Stanislav Malyshev --- acinclude.m4 | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/acinclude.m4 b/acinclude.m4 index 9f68ecf3fe..36a4102a40 100644 --- a/acinclude.m4 +++ b/acinclude.m4 @@ -176,7 +176,7 @@ case "[$]$1" in shared,*) ext_output="yes, shared" ext_shared=yes - $1=`echo $ac_n "[$]$1$ac_c"|sed s/^shared,//` + $1=`echo "[$]$1"|sed 's/^shared,//'` ;; shared) ext_output="yes, shared" -- 2.50.1