On a system with both automake-1.10 (installed as "automake") and automake-1.9 installed as /usr/bin/automake-1.9, autogen.sh would mistakenly use the older version. This change makes it prefer whatever is installed as "automake".
>From 7b434489881a674ee596ceda3d59ceabf5da9b98 Mon Sep 17 00:00:00 2001 From: Jim Meyering <[email protected]> Date: Mon, 23 Mar 2009 14:56:25 +0100 Subject: [PATCH] autogen.sh: prefer "automake" over automake-1.9 * autogen.sh: ...and don't accept ancient versions of automake. --- autogen.sh | 2 +- 1 files changed, 1 insertions(+), 1 deletions(-) diff --git a/autogen.sh b/autogen.sh index 98cd026..c1b7181 100755 --- a/autogen.sh +++ b/autogen.sh @@ -77,7 +77,7 @@ do done # Check for automake -for command in automake automake14 automake-1.4 automake15 automake-1.5 automake17 automake-1.7 automake19 automake-1.9 +for command in automake19 automake-1.9 automake do if testProgram $command -- 1.6.2.rc1.285.gc5f54 _______________________________________________ Openais mailing list [email protected] https://lists.linux-foundation.org/mailman/listinfo/openais
