summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDaniel Caujolle-Bert <f1rmb@users.sourceforge.net>2002-04-19 21:11:47 +0000
committerDaniel Caujolle-Bert <f1rmb@users.sourceforge.net>2002-04-19 21:11:47 +0000
commitf90ba74fa8fa1a75650e183cdc184528646e9d32 (patch)
treeac0c6172c1047a16620a335516e55d64358a6e27
parent2bda97238d101e67daf143c906bbf01965765ca9 (diff)
downloadxine-lib-f90ba74fa8fa1a75650e183cdc184528646e9d32.tar.gz
xine-lib-f90ba74fa8fa1a75650e183cdc184528646e9d32.tar.bz2
Fix regexp, should fix Miguel's "automake 1.4-p5" issue (and he isn't alone).
CVS patchset: 1740 CVS date: 2002/04/19 21:11:47
-rwxr-xr-xcvscompile.sh2
1 files changed, 1 insertions, 1 deletions
diff --git a/cvscompile.sh b/cvscompile.sh
index ae6df4f4c..e6c4c3428 100755
--- a/cvscompile.sh
+++ b/cvscompile.sh
@@ -3,7 +3,7 @@
## extract automake version
automake_1_5x=no
-AM="`automake --version | sed -n 1p | sed -e 's/[a-zA-Z\ \.\(\)]//g'`"
+AM="`automake --version | sed -n 1p | sed -e 's/[a-zA-Z\ \.\(\)\-]//g'`"
if test $AM -lt 100 ; then
AM=`expr $AM \* 10`
fi