Commit 750c81c7 authored by Sam Hocevar's avatar Sam Hocevar

* bootstrap: Fixed detection of older automake version that advertise

    themselves as 1.[0-5]-* instead of 1.[0-5].*.
parent 9f3b1f13
#! /bin/sh #! /bin/sh
## bootstrap file for the VLC media player ## 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> ## Authors: Sam Hocevar <sam@zoy.org>
...@@ -305,7 +305,7 @@ elif automake-1.5 --version >/dev/null 2>&1; then ...@@ -305,7 +305,7 @@ elif automake-1.5 --version >/dev/null 2>&1; then
elif automake --version > /dev/null 2>&1; then elif automake --version > /dev/null 2>&1; then
amvers="" amvers=""
case "`automake --version | sed -e '1s/[^0-9]*//' -e q`" in 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" ;; amvers="none" ;;
1.5|1.5.*) 1.5|1.5.*)
INSTALLSUCKS=yes ;; INSTALLSUCKS=yes ;;
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment