summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-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"