summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorrfelker <rfelker@b3059339-0415-0410-9bf9-f77b7e298cf2>2005-05-04 16:06:07 +0000
committerrfelker <rfelker@b3059339-0415-0410-9bf9-f77b7e298cf2>2005-05-04 16:06:07 +0000
commit9eb37b7c2d283b3c7706503d0b31cc243f0da559 (patch)
treed4ab7c649af55e1d21c0450cf378e9ba224282f6
parent7b18d69b2cb5c5b5ecaf2b858e21795cc275f5e0 (diff)
downloadmpv-9eb37b7c2d283b3c7706503d0b31cc243f0da559.tar.bz2
mpv-9eb37b7c2d283b3c7706503d0b31cc243f0da559.tar.xz
remove nonportable and replace with proper quoting
git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@15342 b3059339-0415-0410-9bf9-f77b7e298cf2
-rwxr-xr-xconfigure2
1 files changed, 1 insertions, 1 deletions
diff --git a/configure b/configure
index 7f33130d2d..3eebc62f93 100755
--- a/configure
+++ b/configure
@@ -1611,7 +1611,7 @@ for ac_option do
--enable-amr_wb) _amr_wb=yes ;;
--disable-amr_wb) _amr_wb=no ;;
--enable-codec=*) _libavcodecs="$_libavcodecs `echo $ac_option | cut -d '=' -f 2`" ;;
- --disable-codec=*) _libavcodecs="$(echo $_libavcodecs | sed "s/$(echo $ac_option | cut -d '=' -f 2)//g")" ;;
+ --disable-codec=*) _libavcodecs="`echo $_libavcodecs | sed "s/\`echo $ac_option | cut -d '=' -f 2\`//g"`" ;;
--enable-libavformat) _libavformat=yes;;
--disable-libavformat) _libavformat=no ;;
--enable-libfame) _fame=yes ;;