diff options
author | Daniel Caujolle-Bert <f1rmb@users.sourceforge.net> | 2002-04-19 21:11:47 +0000 |
---|---|---|
committer | Daniel Caujolle-Bert <f1rmb@users.sourceforge.net> | 2002-04-19 21:11:47 +0000 |
commit | f90ba74fa8fa1a75650e183cdc184528646e9d32 (patch) | |
tree | ac0c6172c1047a16620a335516e55d64358a6e27 | |
parent | 2bda97238d101e67daf143c906bbf01965765ca9 (diff) | |
download | xine-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-x | cvscompile.sh | 2 |
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 |