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 5E42E1382C5 for ; Tue, 8 Dec 2020 11:53:15 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 9FFFAE07D7; Tue, 8 Dec 2020 11:53:14 +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 88BFBE07C5 for ; Tue, 8 Dec 2020 11:53:14 +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 4E8EC340B28 for ; Tue, 8 Dec 2020 11:53:13 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id BBFBB2C5 for ; Tue, 8 Dec 2020 11:53:11 +0000 (UTC) From: "Thomas Deutschmann" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Thomas Deutschmann" Message-ID: <1607428386.e4fb7ae55443e73a360834b161e3a62dacf9a900.whissi@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: dev-php/xdebug-client/ X-VCS-Repository: repo/gentoo X-VCS-Files: dev-php/xdebug-client/xdebug-client-2.9.8.ebuild X-VCS-Directories: dev-php/xdebug-client/ X-VCS-Committer: whissi X-VCS-Committer-Name: Thomas Deutschmann X-VCS-Revision: e4fb7ae55443e73a360834b161e3a62dacf9a900 X-VCS-Branch: master Date: Tue, 8 Dec 2020 11:53:11 +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: 6d0d330e-cb32-4dc8-a647-670baaa67b1d X-Archives-Hash: 4becc8ff404737edd398d28de686685c commit: e4fb7ae55443e73a360834b161e3a62dacf9a900 Author: Thomas Deutschmann gentoo org> AuthorDate: Tue Dec 8 11:13:31 2020 +0000 Commit: Thomas Deutschmann gentoo org> CommitDate: Tue Dec 8 11:53:06 2020 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=e4fb7ae5 dev-php/xdebug-client: don't call CC directly Package-Manager: Portage-3.0.12, Repoman-3.0.2 Signed-off-by: Thomas Deutschmann gentoo.org> dev-php/xdebug-client/xdebug-client-2.9.8.ebuild | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/dev-php/xdebug-client/xdebug-client-2.9.8.ebuild b/dev-php/xdebug-client/xdebug-client-2.9.8.ebuild index ad1c2866a29..36607c13f71 100644 --- a/dev-php/xdebug-client/xdebug-client-2.9.8.ebuild +++ b/dev-php/xdebug-client/xdebug-client-2.9.8.ebuild @@ -9,7 +9,7 @@ MY_PN="xdebug" MY_PV="${PV/_/}" MY_PV="${MY_PV/rc/RC}" -inherit autotools +inherit autotools toolchain-funcs DESCRIPTION="Xdebug client for the Common Debugger Protocol (DBGP)" HOMEPAGE="https://xdebug.org/" @@ -32,6 +32,7 @@ src_prepare() { } src_configure() { + tc-export CC LD econf $(use_with libedit) }