From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from lists.gentoo.org (pigeon.gentoo.org [208.92.234.80]) by finch.gentoo.org (Postfix) with ESMTP id 3606F138010 for ; Sat, 13 Oct 2012 09:16:57 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id E833EE057F; Sat, 13 Oct 2012 09:16:39 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) by pigeon.gentoo.org (Postfix) with ESMTP id 6B77EE057F for ; Sat, 13 Oct 2012 09:16:39 +0000 (UTC) Received: from hornbill.gentoo.org (hornbill.gentoo.org [94.100.119.163]) (using TLSv1 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id CFFFA33DA76 for ; Sat, 13 Oct 2012 09:16:38 +0000 (UTC) Received: from localhost.localdomain (localhost [127.0.0.1]) by hornbill.gentoo.org (Postfix) with ESMTP id 44EF5E5444 for ; Sat, 13 Oct 2012 09:16:36 +0000 (UTC) From: "Ulrich Mueller" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Ulrich Mueller" Message-ID: <1350118194.ea714c1cb0d5b44e9f485386f472219396227d60.ulm@gentoo> Subject: [gentoo-commits] proj/eselect:master commit in: / X-VCS-Repository: proj/eselect X-VCS-Files: ChangeLog autogen.bash X-VCS-Directories: / X-VCS-Committer: ulm X-VCS-Committer-Name: Ulrich Mueller X-VCS-Revision: ea714c1cb0d5b44e9f485386f472219396227d60 X-VCS-Branch: master Date: Sat, 13 Oct 2012 09:16:36 +0000 (UTC) Precedence: bulk List-Post: List-Help: List-Unsubscribe: List-Subscribe: List-Id: Gentoo Linux mail X-BeenThere: gentoo-commits@lists.gentoo.org X-Archives-Salt: b7bc8cf4-89f5-4cd7-b502-b7ea91a4090c X-Archives-Hash: e01b5dc935fb9b4e7b28b4995efc082c commit: ea714c1cb0d5b44e9f485386f472219396227d60 Author: Ulrich Müller gentoo org> AuthorDate: Sat Oct 13 08:49:54 2012 +0000 Commit: Ulrich Mueller gentoo org> CommitDate: Sat Oct 13 08:49:54 2012 +0000 URL: http://git.overlays.gentoo.org/gitweb/?p=proj/eselect.git;a=commit;h=ea714c1c autogen.bash: Update to automake 1.12. * autogen.bash: Update to automake 1.12. This gets rid of the "scan_file() called too early to check prototype" error that occured with aclocal-1.11. --- ChangeLog | 4 ++++ autogen.bash | 4 ++-- 2 files changed, 6 insertions(+), 2 deletions(-) diff --git a/ChangeLog b/ChangeLog index 386e250..4f82e78 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,5 +1,9 @@ 2012-10-13 Ulrich Müller + * autogen.bash: Update to automake 1.12. This gets rid of the + "scan_file() called too early to check prototype" error that + occured with aclocal-1.11. + * configure.ac (SED): Replace broken ES_PROG_GNU_SED code by a straightforward check for gsed or sed, bug 438112. (READLINK, REALPATH): Simplify logic and add output messages. diff --git a/autogen.bash b/autogen.bash index 491fca1..9021920 100755 --- a/autogen.bash +++ b/autogen.bash @@ -34,9 +34,9 @@ run mkdir -p config run $(get libtoolize) --copy --force --automake rm -f config.cache -run $(get aclocal 1.11) +run $(get aclocal 1.12) # run $(get autoheader 2.59) WANT_AUTOCONF=2.5 run $(get autoconf 2.68 2.67 2.65) -WANT_AUTOMAKE=1.11 run $(get automake 1.11) -a -c -W no-portability +WANT_AUTOMAKE=1.12 run $(get automake 1.12) -a -c -W no-portability echo "Success. Now run ./configure --help"