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 0989E1386F3 for ; Thu, 13 Aug 2015 10:07:16 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 9D9F0E087A; Thu, 13 Aug 2015 10:07:15 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 2DABCE0879 for ; Thu, 13 Aug 2015 10:07:15 +0000 (UTC) Received: from oystercatcher.gentoo.org (oystercatcher.gentoo.org [148.251.78.52]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 5514E340800 for ; Thu, 13 Aug 2015 10:07:14 +0000 (UTC) Received: from localhost.localdomain (localhost [127.0.0.1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 03D65154 for ; Thu, 13 Aug 2015 10:07:13 +0000 (UTC) From: "Ulrich Müller" 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 Müller" Message-ID: <1439454998.7f50ddd8054cff8570c1a2589914cc7e88fddab1.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 Müller X-VCS-Revision: 7f50ddd8054cff8570c1a2589914cc7e88fddab1 X-VCS-Branch: master Date: Thu, 13 Aug 2015 10:07:13 +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: f7a64ef3-e2a4-48f0-87f5-31366eb29496 X-Archives-Hash: a9094c92c7b01b70789dcfa65ce8d7ff commit: 7f50ddd8054cff8570c1a2589914cc7e88fddab1 Author: Ulrich Müller gentoo org> AuthorDate: Thu Aug 13 08:36:38 2015 +0000 Commit: Ulrich Müller gentoo org> CommitDate: Thu Aug 13 08:36:38 2015 +0000 URL: https://gitweb.gentoo.org/proj/eselect.git/commit/?id=7f50ddd8 Update for automake-1.15. * autogen.bash: Update for aclocal 1.15 and automake-1.15. ChangeLog | 2 ++ autogen.bash | 5 +++-- 2 files changed, 5 insertions(+), 2 deletions(-) diff --git a/ChangeLog b/ChangeLog index 4f43078..966b813 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,5 +1,7 @@ 2015-08-13 Ulrich Müller + * autogen.bash: Update for aclocal 1.15 and automake-1.15. + * modules/binutils.eselect: * man/binutils.eselect.5: Module removed. This has been converted to a wrapper and moved to the binutils-config package, bug 507870. diff --git a/autogen.bash b/autogen.bash index 7e3c72a..eec7f3c 100755 --- a/autogen.bash +++ b/autogen.bash @@ -34,9 +34,10 @@ run mkdir -p config run $(get libtoolize) --copy --force --automake rm -f config.cache -run $(get aclocal 1.14 1.13 1.12) +run $(get aclocal 1.15 1.14 1.13 1.12) # run $(get autoheader 2.59) WANT_AUTOCONF=2.5 run $(get autoconf 2.69 2.68 2.67 2.65) -WANT_AUTOMAKE=1.12 run $(get automake 1.14 1.13 1.12) -a -c -W no-portability +WANT_AUTOMAKE=1.12 run $(get automake 1.15 1.14 1.13 1.12) \ + -a -c -W no-portability echo "Success. Now run ./configure --help"