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 A7B301382C5 for ; Mon, 25 May 2020 08:37:38 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 82A1BE0856; Mon, 25 May 2020 08:37:37 +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 2AC53E0856 for ; Mon, 25 May 2020 08:37:36 +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 85B8E34EE76 for ; Mon, 25 May 2020 08:37:35 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 7A04931 for ; Mon, 25 May 2020 08:37:33 +0000 (UTC) From: "Sergei Trofimovich" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Sergei Trofimovich" Message-ID: <1590395847.8933084aa74fa58638bd21b5dc5de9420beb4db3.slyfox@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: media-libs/libmng/ X-VCS-Repository: repo/gentoo X-VCS-Files: media-libs/libmng/libmng-2.0.3.ebuild X-VCS-Directories: media-libs/libmng/ X-VCS-Committer: slyfox X-VCS-Committer-Name: Sergei Trofimovich X-VCS-Revision: 8933084aa74fa58638bd21b5dc5de9420beb4db3 X-VCS-Branch: master Date: Mon, 25 May 2020 08:37:33 +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: 0c69c565-1b4b-489f-8601-6af94ae06e3e X-Archives-Hash: e38f2fb5c1bf39ee36a43d81c0bdd0f0 commit: 8933084aa74fa58638bd21b5dc5de9420beb4db3 Author: Sergei Trofimovich gentoo org> AuthorDate: Mon May 25 08:37:05 2020 +0000 Commit: Sergei Trofimovich gentoo org> CommitDate: Mon May 25 08:37:27 2020 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=8933084a media-libs/libmng: don't call 'gcc' in src_prepare(), bug #720884 Before the change src_prepare() was calling 'emake distclean'. That forced reconfiguration with default CC=gcc. The change just deletes files which 'make distclean' would delete. Reported-by: Agostino Sarubbo Closes: https://bugs.gentoo.org/720884 Package-Manager: Portage-2.3.100, Repoman-2.3.22 Signed-off-by: Sergei Trofimovich gentoo.org> media-libs/libmng/libmng-2.0.3.ebuild | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/media-libs/libmng/libmng-2.0.3.ebuild b/media-libs/libmng/libmng-2.0.3.ebuild index d894ab2fc5f..766e9a921b3 100644 --- a/media-libs/libmng/libmng-2.0.3.ebuild +++ b/media-libs/libmng/libmng-2.0.3.ebuild @@ -23,9 +23,10 @@ DEPEND="${RDEPEND}" PATCHES=( "${FILESDIR}"/${P}-jpeg-9a.patch ) src_prepare() { - eautoreconf - emake distclean default + # effect of 'make distclean' + rm Makefile config.h config.log config.status libmng.pc stamp-h1 || die + eautoreconf } multilib_src_configure() {