diff options
author | Joe Orton <jorton@apache.org> | 2006-03-29 16:04:08 +0200 |
---|---|---|
committer | Joe Orton <jorton@apache.org> | 2006-03-29 16:04:08 +0200 |
commit | 486c3d352f2f0aadcf0790bf9a18f00e5919b869 (patch) | |
tree | 7a4c1166804ddb4fe6b22b366baddd5f024a5fe0 /build/instdso.sh | |
parent | * Check return value of apr_bucket_read when storing the response body to disk. (diff) | |
download | apache2-486c3d352f2f0aadcf0790bf9a18f00e5919b869.tar.xz apache2-486c3d352f2f0aadcf0790bf9a18f00e5919b869.zip |
* build/instdso.sh: Fix syntax error with some sed implementations.
PR: 38108
Submitted by: Masaoki Kobayashi <masaoki techfirm.co.jp>
git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@389797 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'build/instdso.sh')
-rwxr-xr-x | build/instdso.sh | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/build/instdso.sh b/build/instdso.sh index 0b2ab00da0..c46eca212c 100755 --- a/build/instdso.sh +++ b/build/instdso.sh @@ -63,8 +63,8 @@ fi if test -s "$TARGETDIR/$DSOARCHIVE_BASENAME" then - DLNAME=`sed -n "/^dlname=/{s/.*='\([^']*\)'/\1/;p}" $TARGETDIR/$DSOARCHIVE_BASENAME` - LIBRARY_NAMES=`sed -n "/^library_names/{s/library_names='\([^']*\)'/\1/;p}" $TARGETDIR/$DSOARCHIVE_BASENAME` + DLNAME=`sed -n "/^dlname=/{s/.*='\([^']*\)'/\1/;p;}" $TARGETDIR/$DSOARCHIVE_BASENAME` + LIBRARY_NAMES=`sed -n "/^library_names/{s/library_names='\([^']*\)'/\1/;p;}" $TARGETDIR/$DSOARCHIVE_BASENAME` LIBRARY_NAMES=`echo $LIBRARY_NAMES | sed -e "s/ *$DLNAME//g"` fi |