Bug#231915: my two cents

Geert Stappers Geert Stappers <stappers@stappers.nl>, 231915@bugs.debian.org
Fri, 13 Aug 2004 11:58:24 +0200


--9zSXsLTf0vkW971A
Content-Type: text/plain; charset=us-ascii
Content-Disposition: inline

Hello,

I also encounter this bug.  :-(
The tricky part is that it says it checks for _newer_ or equal than 1.4,
but it does NOT check for the newer versions.

When automake1.8 is not supported, then please use attached patch,
which does the check for newer versions.

IMNSHO the current approach, lock on automake1.4, only hides problems.


Cheers
Geert Stappers

--9zSXsLTf0vkW971A
Content-Type: text/plain; charset=us-ascii
Content-Disposition: attachment; filename="my231915.patch"

--- /usr/share/aclocal/gnome2-macros/autogen.sh	2004-02-12 17:34:17.000000000 +0100
+++ autogen.sh	2004-08-13 11:37:28.000000000 +0200
@@ -248,7 +248,7 @@
 AUTOHEADER=`echo $AUTOCONF | sed s/autoconf/autoheader/`
 
 case $REQUIRED_AUTOMAKE_VERSION in
-    1.4*) automake_progs="automake-1.4" ;;
+    1.4*) automake_progs="automake-1.7 automake-1.6 automake-1.5 automake-1.4" ;;
     1.5*) automake_progs="automake-1.7 automake-1.6 automake-1.5" ;;
     1.6*) automake_progs="automake-1.7 automake-1.6" ;;
     1.7*) automake_progs="automake-1.7" ;;

--9zSXsLTf0vkW971A--