summaryrefslogtreecommitdiffstats
path: root/configure
diff options
context:
space:
mode:
authoratmos4 <atmos4@b3059339-0415-0410-9bf9-f77b7e298cf2>2003-02-23 23:48:03 +0000
committeratmos4 <atmos4@b3059339-0415-0410-9bf9-f77b7e298cf2>2003-02-23 23:48:03 +0000
commit9e9a38814dd203077492924f9d7e135abe711390 (patch)
tree58437bef5c51609a9ea0b1fe8201645a642936f0 /configure
parentdef4bad8e6b8b5a0c2f8520735f04354e2f67c77 (diff)
downloadmpv-9e9a38814dd203077492924f9d7e135abe711390.tar.bz2
mpv-9e9a38814dd203077492924f9d7e135abe711390.tar.xz
fix of fix of my sed code, should now be portable
git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@9499 b3059339-0415-0410-9bf9-f77b7e298cf2
Diffstat (limited to 'configure')
-rwxr-xr-xconfigure2
1 files changed, 1 insertions, 1 deletions
diff --git a/configure b/configure
index d305c59136..7419d97bd8 100755
--- a/configure
+++ b/configure
@@ -3881,7 +3881,7 @@ int main(void) {
EOF
if cc_check $_ld_faad -lm && "$TMPO" >> "$TMPLOG" ; then
_faad_version=`"$TMPO"`
- _faad_tempversion=`"$TMPO" | sed -e 's/^\([0-9]*\)\.\([0-9]*\).*/\1\2/'`
+ _faad_tempversion=`"$TMPO" | sed -e 's/^\([0-9]\{1,\}\)\.\([0-9]\{1,\}\).*/\1\2/'`
_def_faad_version="#define FAADVERSION $_faad_tempversion"
echores "yes ($_faad_version)"
else