diff options
author | Sascha Schumann <sas@php.net> | 2000-12-03 10:58:18 +0000 |
---|---|---|
committer | Sascha Schumann <sas@php.net> | 2000-12-03 10:58:18 +0000 |
commit | 3f38d892c0e045a59fa94a143b8c684240819919 (patch) | |
tree | c8fd9560da4891e63e5c4e0eced6ddec31839a9f | |
parent | 5f683e7d7857cc458018b5fc8a501ba1f51cfc15 (diff) | |
download | php-git-3f38d892c0e045a59fa94a143b8c684240819919.tar.gz |
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
-rw-r--r-- | acinclude.m4 | 2 |
1 files changed, 1 insertions, 1 deletions
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" |