]> git.sesse.net Git - vlc/commitdiff
* bootstrap: Fixed detection of older automake version that advertise
authorSam Hocevar <sam@videolan.org>
Tue, 1 Jul 2003 17:28:50 +0000 (17:28 +0000)
committerSam Hocevar <sam@videolan.org>
Tue, 1 Jul 2003 17:28:50 +0000 (17:28 +0000)
    themselves as 1.[0-5]-* instead of 1.[0-5].*.

bootstrap

index 28f2edaf5d81a450c2c66a5483ccba1f5dad7162..09b1186b55f4d81abc78a279750a5ad91c3a05b7 100755 (executable)
--- a/bootstrap
+++ b/bootstrap
@@ -1,7 +1,7 @@
 #! /bin/sh
 
 ##  bootstrap file for the VLC media player
-##  $Id: bootstrap,v 1.56 2003/07/01 16:25:24 sam Exp $
+##  $Id: bootstrap,v 1.57 2003/07/01 17:28:50 sam Exp $
 ##
 ##  Authors: Sam Hocevar <sam@zoy.org>
 
@@ -305,7 +305,7 @@ elif automake-1.5 --version >/dev/null 2>&1; then
 elif automake --version > /dev/null 2>&1; then
   amvers=""
   case "`automake --version | sed -e '1s/[^0-9]*//' -e q`" in
-    0|0.*|1|1.[01234]|1.[01234].*)
+    0|0.*|1|1.[01234]|1.[01234][-.]*)
       amvers="none" ;;
     1.5|1.5.*)
       INSTALLSUCKS=yes ;;