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 751F513835A for ; Tue, 13 Apr 2021 00:26:56 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 61C09E0BAD; Tue, 13 Apr 2021 00:26:55 +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 497B8E0BA8 for ; Tue, 13 Apr 2021 00:26:55 +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 E072C335D07 for ; Tue, 13 Apr 2021 00:26:53 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 3B65564A for ; Tue, 13 Apr 2021 00:26:52 +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: <1618273573.4fde3f6303157ee2406dbbf31c2d5577f77c164b.sam@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: gnustep-base/gnustep-base/ X-VCS-Repository: repo/gentoo X-VCS-Files: gnustep-base/gnustep-base/gnustep-base-1.27.0.ebuild X-VCS-Directories: gnustep-base/gnustep-base/ X-VCS-Committer: sam X-VCS-Committer-Name: Sam James X-VCS-Revision: 4fde3f6303157ee2406dbbf31c2d5577f77c164b X-VCS-Branch: master Date: Tue, 13 Apr 2021 00:26:52 +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: 8f86e823-59d7-4542-b008-f7835c3df802 X-Archives-Hash: 40f7e7944271bb43b6a588e1e19afc37 commit: 4fde3f6303157ee2406dbbf31c2d5577f77c164b Author: Sam James gentoo org> AuthorDate: Wed Apr 7 05:12:37 2021 +0000 Commit: Sam James gentoo org> CommitDate: Tue Apr 13 00:26:13 2021 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=4fde3f63 gnustep-base/gnustep-base: call pkg-config via toolchain-funcs.eclass helper This ensures we call the correct pkg-config in e.g. cross. Package-Manager: Portage-3.0.14-prefix, Repoman-3.0.2 Signed-off-by: Sam James gentoo.org> gnustep-base/gnustep-base/gnustep-base-1.27.0.ebuild | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/gnustep-base/gnustep-base/gnustep-base-1.27.0.ebuild b/gnustep-base/gnustep-base/gnustep-base-1.27.0.ebuild index 650cd7372bb..ac7e08a85e0 100644 --- a/gnustep-base/gnustep-base/gnustep-base-1.27.0.ebuild +++ b/gnustep-base/gnustep-base/gnustep-base-1.27.0.ebuild @@ -2,7 +2,7 @@ # Distributed under the terms of the GNU General Public License v2 EAPI=7 -inherit eutils gnustep-base +inherit eutils gnustep-base toolchain-funcs DESCRIPTION="A library of general-purpose, non-graphical Objective C objects" HOMEPAGE="http://www.gnustep.org" @@ -38,7 +38,7 @@ src_configure() { local myconf if use libffi ; then - myconf="--enable-libffi --disable-ffcall --with-ffi-include=$(pkg-config --variable=includedir libffi)" + myconf="--enable-libffi --disable-ffcall --with-ffi-include=$($(tc-getPKG_CONFIG) --variable=includedir libffi)" else myconf="--disable-libffi --enable-ffcall" fi