diff options
author | Jan Schmidt <thaytan@noraisin.net> | 2009-07-01 10:06:26 +0100 |
---|---|---|
committer | Jan Schmidt <thaytan@noraisin.net> | 2009-07-01 10:30:48 +0100 |
commit | 793e25cfc7fc655a9ea8e2e624e856961cc486e8 (patch) | |
tree | bca896dbfeb577ac56965c1c73f5f8e8a612d738 | |
parent | ec63dabd88a76821bfbf9d16fb949fdbee9092e9 (diff) |
autogen.sh: Use printf instead of 'echo -n'. Check for automake-1.1[01]
Check for more automake command variants. Use printf instead of 'echo -n'
for portability
-rwxr-xr-x | autogen.sh | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -66,11 +66,11 @@ fi autogen_options $@ -echo -n "+ check for build tools" +printf "+ check for build tools" if test ! -z "$NOCHECK"; then echo " skipped"; else echo; fi version_check "autoconf" "$AUTOCONF autoconf autoconf-2.54 autoconf-2.53 autoconf-2.52" \ "ftp://ftp.gnu.org/pub/gnu/autoconf/" 2 52 || DIE=1 -version_check "automake" "$AUTOMAKE automake automake-1.9 automake-1.7 automake-1.6 automake-1.5" \ +version_check "automake" "$AUTOMAKE automake automake-1.11 automake-1.10 automake-1.9 automake-1.7 automake-1.6 automake-1.5" \ "ftp://ftp.gnu.org/pub/gnu/automake/" 1 6 || DIE=1 version_check "libtoolize" "$LIBTOOLIZE libtoolize libtoolize14 glibtoolize" \ "ftp://ftp.gnu.org/pub/gnu/libtool/" 1 4 0 || DIE=1 |