From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from lists.gentoo.org (pigeon.gentoo.org [208.92.234.80]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id C6C15139694 for ; Wed, 15 Mar 2017 08:15:43 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id D0BE221C04E; Wed, 15 Mar 2017 08:15:41 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id AC78121C04E for ; Wed, 15 Mar 2017 08:15:41 +0000 (UTC) Received: from oystercatcher.gentoo.org (oystercatcher.gentoo.org [148.251.78.52]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id F3DC034071C for ; Wed, 15 Mar 2017 08:15:39 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 2E99168D4 for ; Wed, 15 Mar 2017 08:15:38 +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: <1489565715.f9b01dc8c1806ee818a39edf8a068a54e1e7caa1.ulm@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: app-editors/emacs-vcs/ X-VCS-Repository: repo/gentoo X-VCS-Files: app-editors/emacs-vcs/emacs-vcs-26.0.9999.ebuild X-VCS-Directories: app-editors/emacs-vcs/ X-VCS-Committer: ulm X-VCS-Committer-Name: Ulrich Müller X-VCS-Revision: f9b01dc8c1806ee818a39edf8a068a54e1e7caa1 X-VCS-Branch: master Date: Wed, 15 Mar 2017 08:15:38 +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: a8ee18fa-ee84-4f94-a872-1d23bcac45f5 X-Archives-Hash: d3c8f234a7dced65832c38d0cd52c1b5 commit: f9b01dc8c1806ee818a39edf8a068a54e1e7caa1 Author: Ulrich Müller gentoo org> AuthorDate: Wed Mar 15 08:15:15 2017 +0000 Commit: Ulrich Müller gentoo org> CommitDate: Wed Mar 15 08:15:15 2017 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=f9b01dc8 app-editors/emacs-vcs: Call autogen.sh unconditionally. It will not only be needed for live versions, but for snapshots too. Add explicit ./autogen.sh path. Package-Manager: Portage-2.3.4, Repoman-2.3.2 app-editors/emacs-vcs/emacs-vcs-26.0.9999.ebuild | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/app-editors/emacs-vcs/emacs-vcs-26.0.9999.ebuild b/app-editors/emacs-vcs/emacs-vcs-26.0.9999.ebuild index ef85072615b..efb82a521ff 100644 --- a/app-editors/emacs-vcs/emacs-vcs-26.0.9999.ebuild +++ b/app-editors/emacs-vcs/emacs-vcs-26.0.9999.ebuild @@ -112,9 +112,6 @@ src_prepare() { einfo "Emacs version number: ${FULL_VERSION}" [[ ${FULL_VERSION} =~ ^${PV%.*}(\..*)?$ ]] \ || die "Upstream version number changed to ${FULL_VERSION}" - - #605400 - bash -c 'autoreconf() { :; }; . $0 "$@"' autogen.sh --no-check || die fi eapply_user @@ -123,6 +120,8 @@ src_prepare() { sed -i -e "/^\\.so/s/etags/&-${EMACS_SUFFIX}/" doc/man/ctags.1 \ || die "unable to sed ctags.1" + bash -c 'autoreconf() { echo nope; }; . $0 "$@"' \ + ./autogen.sh --no-check || die #605400 AT_M4DIR=m4 eautoreconf touch src/stamp-h.in || die }