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 A21761382C5 for ; Thu, 11 Mar 2021 08:37:16 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id E49FBE0964; Thu, 11 Mar 2021 08:37:15 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id AEE5DE0964 for ; Thu, 11 Mar 2021 08:37:15 +0000 (UTC) Received: from oystercatcher.gentoo.org (unknown [IPv6:2a01:4f8:202:4333:225:90ff:fed9:fc84]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id A8FF0340DBF for ; Thu, 11 Mar 2021 08:37:14 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 1ED1A579 for ; Thu, 11 Mar 2021 08:37:13 +0000 (UTC) From: "Sam James" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Sam James" Message-ID: <1615451647.ab0e9287cc12e4d117f7c989af44a4f733c67b1b.sam@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: sci-libs/gdal/ X-VCS-Repository: repo/gentoo X-VCS-Files: sci-libs/gdal/gdal-3.2.2.ebuild X-VCS-Directories: sci-libs/gdal/ X-VCS-Committer: sam X-VCS-Committer-Name: Sam James X-VCS-Revision: ab0e9287cc12e4d117f7c989af44a4f733c67b1b X-VCS-Branch: master Date: Thu, 11 Mar 2021 08:37: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-Auto-Response-Suppress: DR, RN, NRN, OOF, AutoReply X-Archives-Salt: 66b50042-32d6-4941-bd9b-d966c73fbf07 X-Archives-Hash: e21f84b7b6ae9cb37f9e1a861fc65dd4 commit: ab0e9287cc12e4d117f7c989af44a4f733c67b1b Author: Sam James gentoo org> AuthorDate: Thu Mar 11 08:34:07 2021 +0000 Commit: Sam James gentoo org> CommitDate: Thu Mar 11 08:34:07 2021 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=ab0e9287 sci-libs/gdal: fix autoconf 2.70+ Closes: https://bugs.gentoo.org/775209 Signed-off-by: Sam James gentoo.org> sci-libs/gdal/gdal-3.2.2.ebuild | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/sci-libs/gdal/gdal-3.2.2.ebuild b/sci-libs/gdal/gdal-3.2.2.ebuild index c57f6497c17..34ff6268241 100644 --- a/sci-libs/gdal/gdal-3.2.2.ebuild +++ b/sci-libs/gdal/gdal-3.2.2.ebuild @@ -111,6 +111,10 @@ src_prepare() { sed -e "s: gdal_array.i: ../include/gdal_array.i:" \ -i swig/python/GNUmakefile || die "sed python makefile failed" + # autoconf 2.70+ + # bug #775209 + touch config.rpath || die + eautoreconf }