summaryrefslogtreecommitdiffstats
path: root/configure
diff options
context:
space:
mode:
authordiego <diego@b3059339-0415-0410-9bf9-f77b7e298cf2>2007-01-24 18:10:40 +0000
committerdiego <diego@b3059339-0415-0410-9bf9-f77b7e298cf2>2007-01-24 18:10:40 +0000
commit7061372a7459c4d8345e4107210cb690d22d65b5 (patch)
treee00476fad38966e026278266d5f989d2a6837c22 /configure
parente77fbf0bd7c5852e19f1cda9c68a9450c8d48950 (diff)
downloadmpv-7061372a7459c4d8345e4107210cb690d22d65b5.tar.bz2
mpv-7061372a7459c4d8345e4107210cb690d22d65b5.tar.xz
Quote some expressions, might help with some shells.
patch Derek E. Lewis, dlewis solnetworks net git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@22006 b3059339-0415-0410-9bf9-f77b7e298cf2
Diffstat (limited to 'configure')
-rwxr-xr-xconfigure4
1 files changed, 2 insertions, 2 deletions
diff --git a/configure b/configure
index 9e2dc656ca..9d7d8839ab 100755
--- a/configure
+++ b/configure
@@ -7419,8 +7419,8 @@ echores "$_color_console"
# linker paths should be the same for mencoder and mplayer
_ld_tmp=""
for I in $_libs_mplayer ; do
- _tmp=`echo $I | sed -e s/^-L.*$//`
- if test -z $_tmp ; then
+ _tmp=`echo $I | sed -e 's/^-L.*$//'`
+ if test -z "$_tmp" ; then
_ld_extra="$I $_ld_extra"
else
_ld_tmp="$_ld_tmp $I"