From 537cf3aa2c90d2d9ffa98a11e95cd2bba27250d7 Mon Sep 17 00:00:00 2001 From: Sam Hocevar Date: Thu, 3 Oct 2002 08:44:11 +0000 Subject: [PATCH] * ./bootstrap: fixed a bug I introduced yesterday that caused automake version detection not to work properly. --- bootstrap | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/bootstrap b/bootstrap index 80941e7479..1d2146bc73 100755 --- a/bootstrap +++ b/bootstrap @@ -1,7 +1,7 @@ #! /bin/sh ## bootstrap file for vlc, the VideoLAN Client -## $Id: bootstrap,v 1.16 2002/10/02 16:02:43 sam Exp $ +## $Id: bootstrap,v 1.17 2002/10/03 08:44:11 sam Exp $ ## ## Authors: Samuel Hocevar @@ -211,7 +211,7 @@ else else if automake --version > /dev/null 2>&1 then - amvers=`echo $amvers | sed -e '1s/[^0-9]*//' -e q` + amvers=`automake --version | sed -e '1s/[^0-9]*//' -e q` case $amvers in 1.6|1.6.0|1.6.1) AUTOMAKESUCKS=yes ;;