From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from smtp.gentoo.org (woodpecker.gentoo.org [140.211.166.183]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits)) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id A1BCD158B20 for ; Tue, 04 Feb 2025 18:24:43 +0000 (UTC) Received: from lists.gentoo.org (bobolink.gentoo.org [140.211.166.189]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits)) (No client certificate requested) (Authenticated sender: relay-lists.gentoo.org@gentoo.org) by smtp.gentoo.org (Postfix) with ESMTPSA id 88777342F9D for ; Tue, 04 Feb 2025 18:24:43 +0000 (UTC) Received: from bobolink.gentoo.org (localhost [127.0.0.1]) by bobolink.gentoo.org (Postfix) with ESMTP id C544B110472; Tue, 04 Feb 2025 18:24:39 +0000 (UTC) Received: from smtp.gentoo.org (mail.gentoo.org [IPv6:2001:470:ea4a:1:5054:ff:fec7:86e4]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits)) (No client certificate requested) by bobolink.gentoo.org (Postfix) with ESMTPS id B9997110471 for ; Tue, 04 Feb 2025 18:24:39 +0000 (UTC) Received: from oystercatcher.gentoo.org (oystercatcher.gentoo.org [148.251.78.52]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits) server-digest SHA256) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 6ED78342F9E for ; Tue, 04 Feb 2025 18:24:39 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id A480B2195 for ; Tue, 04 Feb 2025 18:24:37 +0000 (UTC) From: "Mike Pagano" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Mike Pagano" Message-ID: <1738693343.a6d05c38aeaa32856f18b48aa3a75ff9aa097b14.mpagano@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: dev-util/quilt/ X-VCS-Repository: repo/gentoo X-VCS-Files: dev-util/quilt/quilt-9999.ebuild X-VCS-Directories: dev-util/quilt/ X-VCS-Committer: mpagano X-VCS-Committer-Name: Mike Pagano X-VCS-Revision: a6d05c38aeaa32856f18b48aa3a75ff9aa097b14 X-VCS-Branch: master Date: Tue, 04 Feb 2025 18:24:37 +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-Auto-Response-Suppress: DR, RN, NRN, OOF, AutoReply X-Archives-Salt: aaae6fd7-be33-4f1e-9108-44886935da50 X-Archives-Hash: a4c1a99cfab595d8b2ba3713e177ee64 commit: a6d05c38aeaa32856f18b48aa3a75ff9aa097b14 Author: Mike Pagano gentoo org> AuthorDate: Tue Feb 4 18:22:23 2025 +0000 Commit: Mike Pagano gentoo org> CommitDate: Tue Feb 4 18:22:23 2025 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=a6d05c38 dev-util/quilt: Fix configure phase Signed-off-by: Mike Pagano gentoo.org> dev-util/quilt/quilt-9999.ebuild | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/dev-util/quilt/quilt-9999.ebuild b/dev-util/quilt/quilt-9999.ebuild index 625fa6eb02b3..48055d84b801 100644 --- a/dev-util/quilt/quilt-9999.ebuild +++ b/dev-util/quilt/quilt-9999.ebuild @@ -1,4 +1,4 @@ -# Copyright 1999-2024 Gentoo Authors +# Copyright 1999-2025 Gentoo Authors # Distributed under the terms of the GNU General Public License v2 EAPI=8 @@ -7,7 +7,7 @@ EGIT_REPO_URI="https://git.savannah.gnu.org/git/quilt.git" [[ ${PV} == 9999 ]] && inherit git-r3 -inherit bash-completion-r1 elisp-common +inherit autotools bash-completion-r1 elisp-common DESCRIPTION="quilt patch manager" HOMEPAGE="https://savannah.nongnu.org/projects/quilt" @@ -46,6 +46,8 @@ src_configure() { [[ ${CHOST} == *-darwin* || ${CHOST} == *-solaris* ]] \ && myconf+=( "--with-getopt=${EPREFIX}/usr/bin/getopt-long" ) econf "${myconf[@]}" + eautoreconf + default } src_compile() {