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 BC978158017 for ; Wed, 29 Sep 2021 22:21:40 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 05062E08BF; Wed, 29 Sep 2021 22:21:40 +0000 (UTC) Received: from smtp.gentoo.org (woodpecker.gentoo.org [140.211.166.183]) (using TLSv1.2 with cipher ECDHE-RSA-CHACHA20-POLY1305 (256/256 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id DC024E08BF for ; Wed, 29 Sep 2021 22:21:39 +0000 (UTC) Received: from oystercatcher.gentoo.org (oystercatcher.gentoo.org [148.251.78.52]) (using TLSv1.2 with cipher ECDHE-RSA-CHACHA20-POLY1305 (256/256 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 973C9342B15 for ; Wed, 29 Sep 2021 22:21:38 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id CBC05EA for ; Wed, 29 Sep 2021 22:21:35 +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: <1632954082.c4fcafe9dfa8d26fe7876ed96432a32a6798d623.sam@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: sci-electronics/magic/ X-VCS-Repository: repo/gentoo X-VCS-Files: sci-electronics/magic/magic-7.5.202-r1.ebuild X-VCS-Directories: sci-electronics/magic/ X-VCS-Committer: sam X-VCS-Committer-Name: Sam James X-VCS-Revision: c4fcafe9dfa8d26fe7876ed96432a32a6798d623 X-VCS-Branch: master Date: Wed, 29 Sep 2021 22:21:35 +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: 5d06f7b4-79b0-4b84-ba24-3080460b15df X-Archives-Hash: 04bb36191c599a100e4f27b135471039 commit: c4fcafe9dfa8d26fe7876ed96432a32a6798d623 Author: Sam James gentoo org> AuthorDate: Wed Sep 29 22:20:52 2021 +0000 Commit: Sam James gentoo org> CommitDate: Wed Sep 29 22:21:22 2021 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=c4fcafe9 sci-electronics/magic: fix autoconf 2.71 compatibility in stable Bug: https://bugs.gentoo.org/775422 Closes: https://bugs.gentoo.org/814788 See: be7ed26f001fb31bf32a69824c3cc858b48f0326 Signed-off-by: Sam James gentoo.org> sci-electronics/magic/magic-7.5.202-r1.ebuild | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/sci-electronics/magic/magic-7.5.202-r1.ebuild b/sci-electronics/magic/magic-7.5.202-r1.ebuild index 00761831257..40a3643a1eb 100644 --- a/sci-electronics/magic/magic-7.5.202-r1.ebuild +++ b/sci-electronics/magic/magic-7.5.202-r1.ebuild @@ -31,6 +31,12 @@ src_prepare() { eautoreconf cd .. sed -i -e "s: -pg : :" tcltk/Makefile || die + + # required for >=autoconf-2.70 (bug #775422) + local ac_aux_file + for ac_aux_file in install-sh config.guess config.sub ; do + ln -s scripts/${ac_aux_file} ${ac_aux_file} || die + done } src_configure() {