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.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (2048 bits)) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id AD2F3158091 for ; Sat, 14 May 2022 00:47:32 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id DEBB12BC006; Sat, 14 May 2022 00:47:31 +0000 (UTC) Received: from smtp.gentoo.org (woodpecker.gentoo.org [IPv6:2001:470:ea4a:1:5054:ff:fec7:86e4]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id C560D2BC006 for ; Sat, 14 May 2022 00:47:31 +0000 (UTC) Received: from oystercatcher.gentoo.org (unknown [IPv6:2a01:4f8:202:4333:225:90ff:fed9:fc84]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 08FC93419CE for ; Sat, 14 May 2022 00:47:31 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 2ACE8477 for ; Sat, 14 May 2022 00:47:28 +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: <1652489217.122b1a011834c7637869a1479e61ebb93a028a85.sam@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: net-libs/serf/ X-VCS-Repository: repo/gentoo X-VCS-Files: net-libs/serf/serf-1.3.9-r2.ebuild X-VCS-Directories: net-libs/serf/ X-VCS-Committer: sam X-VCS-Committer-Name: Sam James X-VCS-Revision: 122b1a011834c7637869a1479e61ebb93a028a85 X-VCS-Branch: master Date: Sat, 14 May 2022 00:47:28 +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: 1be8918c-8a6d-4047-a92e-52100e382e26 X-Archives-Hash: 7873ef2da608f27449d6f4ccd42257c2 commit: 122b1a011834c7637869a1479e61ebb93a028a85 Author: Sam James gentoo org> AuthorDate: Tue Apr 19 15:31:45 2022 +0000 Commit: Sam James gentoo org> CommitDate: Sat May 14 00:46:57 2022 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=122b1a01 net-libs/serf: [QA] inline ESYSROOT ESYSROOT is SYSROOT/EPREFIX in >= EAPI 7 Signed-off-by: Sam James gentoo.org> net-libs/serf/serf-1.3.9-r2.ebuild | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/net-libs/serf/serf-1.3.9-r2.ebuild b/net-libs/serf/serf-1.3.9-r2.ebuild index 873b3807ea7d..5ad2ec1a1adc 100644 --- a/net-libs/serf/serf-1.3.9-r2.ebuild +++ b/net-libs/serf/serf-1.3.9-r2.ebuild @@ -52,8 +52,8 @@ src_compile() { # These config scripts are sent through a shell with an empty env # which breaks the SYSROOT usage in them. Set the vars inline to # avoid that. - APR="SYSROOT='${SYSROOT}' ${SYSROOT}${EPREFIX}/usr/bin/apr-1-config" - APU="SYSROOT='${SYSROOT}' ${SYSROOT}${EPREFIX}/usr/bin/apu-1-config" + APR="SYSROOT='${SYSROOT}' ${ESYSROOT}/usr/bin/apr-1-config" + APU="SYSROOT='${SYSROOT}' ${ESYSROOT}/usr/bin/apu-1-config" AR="$(tc-getAR)" RANLIB="$(tc-getRANLIB)" CC="$(tc-getCC)" @@ -63,7 +63,7 @@ src_compile() { ) if use kerberos; then - myesconsargs+=( GSSAPI="${SYSROOT}${EPREFIX}/usr/bin/krb5-config" ) + myesconsargs+=( GSSAPI="${ESYSROOT}/usr/bin/krb5-config" ) fi escons "${myesconsargs[@]}"