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 122F613835A for ; Sat, 4 Jul 2020 13:55:04 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 5E37EE09E5; Sat, 4 Jul 2020 13:55:03 +0000 (UTC) Received: from smtp.gentoo.org (mail.gentoo.org [IPv6:2001:470:ea4a:1:5054:ff:fec7:86e4]) (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 47B6FE09E5 for ; Sat, 4 Jul 2020 13:55:03 +0000 (UTC) Received: from oystercatcher.gentoo.org (oystercatcher.gentoo.org [148.251.78.52]) (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 7482834F1B0 for ; Sat, 4 Jul 2020 13:55:02 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 211422BE for ; Sat, 4 Jul 2020 13:55:01 +0000 (UTC) From: "David Seifert" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "David Seifert" Message-ID: <1593870875.49226474fa86142b7dfb587d72071e390a6d73fe.soap@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: x11-misc/imake/ X-VCS-Repository: repo/gentoo X-VCS-Files: x11-misc/imake/imake-1.0.8.ebuild X-VCS-Directories: x11-misc/imake/ X-VCS-Committer: soap X-VCS-Committer-Name: David Seifert X-VCS-Revision: 49226474fa86142b7dfb587d72071e390a6d73fe X-VCS-Branch: master Date: Sat, 4 Jul 2020 13:55:01 +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: 9299acaf-42be-4e0b-9e1b-434a3d50f601 X-Archives-Hash: 7e2372d4f33f7ea37f70532f1ae77aac commit: 49226474fa86142b7dfb587d72071e390a6d73fe Author: David Seifert gentoo org> AuthorDate: Sat Jul 4 13:54:35 2020 +0000 Commit: David Seifert gentoo org> CommitDate: Sat Jul 4 13:54:35 2020 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=49226474 x11-misc/imake: Pass CPP explicitly Closes: https://bugs.gentoo.org/722046 Package-Manager: Portage-2.3.103, Repoman-2.3.23 Signed-off-by: David Seifert gentoo.org> x11-misc/imake/imake-1.0.8.ebuild | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/x11-misc/imake/imake-1.0.8.ebuild b/x11-misc/imake/imake-1.0.8.ebuild index 4e2c15dde42..4ace6394603 100644 --- a/x11-misc/imake/imake-1.0.8.ebuild +++ b/x11-misc/imake/imake-1.0.8.ebuild @@ -4,7 +4,7 @@ EAPI=7 XORG_STATIC=no -inherit xorg-3 +inherit toolchain-funcs xorg-3 DESCRIPTION="C preprocessor interface to the make utility" KEYWORDS="~alpha amd64 arm arm64 hppa ~ia64 ~mips ppc ppc64 s390 sparc x86 ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~sparc-solaris ~x64-solaris ~x86-solaris" @@ -13,3 +13,7 @@ IUSE="" RDEPEND="x11-misc/xorg-cf-files" DEPEND="${RDEPEND} x11-base/xorg-proto" + +src_configure() { + econf CPP="$(tc-getPROG CPP cpp)" +}