summaryrefslogtreecommitdiff
path: root/m4
diff options
context:
space:
mode:
authorJuergen Keil <jkeil@users.sourceforge.net>2001-09-23 17:29:26 +0000
committerJuergen Keil <jkeil@users.sourceforge.net>2001-09-23 17:29:26 +0000
commit709d5f22d833c518593cbf53b5e92bd8b94f2f28 (patch)
tree16363ea98f60e2a63462c4d29400cf5a272a952e /m4
parentd4589d070b886c317d0052553dd04d5b73c86974 (diff)
downloadxine-lib-709d5f22d833c518593cbf53b5e92bd8b94f2f28.tar.gz
xine-lib-709d5f22d833c518593cbf53b5e92bd8b94f2f28.tar.bz2
GNU sed does not like a single '-' in the middle of a character class RE, move
it to front of the character class RE CVS patchset: 687 CVS date: 2001/09/23 17:29:26
Diffstat (limited to 'm4')
-rw-r--r--m4/_xine.m42
1 files changed, 1 insertions, 1 deletions
diff --git a/m4/_xine.m4 b/m4/_xine.m4
index b58ded3a6..d73cabd40 100644
--- a/m4/_xine.m4
+++ b/m4/_xine.m4
@@ -6,7 +6,7 @@ AC_DEFUN([AC_PREREQ_LIBTOOL],
lt_min_full=ifelse([$1], ,1.3.5,$1)
lt_min=`echo $lt_min_full | sed -e 's/\.//g'`
AC_MSG_CHECKING(for libtool >= $lt_min_full)
- lt_version="`grep '^VERSION' $srcdir/ltmain.sh | sed -e 's/VERSION\=//g;s/[[a-zA-Z-.]]//g'`"
+ lt_version="`grep '^VERSION' $srcdir/ltmain.sh | sed -e 's/VERSION\=//g;s/[[-.a-zA-Z]]//g'`"
if test $lt_version -lt 100 ; then
lt_version=`expr $lt_version \* 10`