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 61306158013 for ; Sat, 25 Sep 2021 09:03:23 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 99D41E0839; Sat, 25 Sep 2021 09:03:22 +0000 (UTC) Received: from smtp.gentoo.org (woodpecker.gentoo.org [140.211.166.183]) (using TLSv1.2 with cipher ECDHE-RSA-CHACHA20-POLY1305 (256/256 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 60B2EE0839 for ; Sat, 25 Sep 2021 09:03:22 +0000 (UTC) Received: from oystercatcher.gentoo.org (unknown [IPv6:2a01:4f8:202:4333:225:90ff:fed9:fc84]) (using TLSv1.2 with cipher ECDHE-RSA-CHACHA20-POLY1305 (256/256 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 6F6E1342E5D for ; Sat, 25 Sep 2021 09:03:20 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 0712510C for ; Sat, 25 Sep 2021 09:03:19 +0000 (UTC) From: "Jakov Smolić" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Jakov Smolić" Message-ID: <1632560580.dfa91850347a9ff476c06e994d6572f3492e7044.jsmolic@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: dev-libs/libxml2/ X-VCS-Repository: repo/gentoo X-VCS-Files: dev-libs/libxml2/libxml2-2.9.12-r5.ebuild X-VCS-Directories: dev-libs/libxml2/ X-VCS-Committer: jsmolic X-VCS-Committer-Name: Jakov Smolić X-VCS-Revision: dfa91850347a9ff476c06e994d6572f3492e7044 X-VCS-Branch: master Date: Sat, 25 Sep 2021 09:03:19 +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: 23663584-0b9e-498e-a614-dc9aa039ffba X-Archives-Hash: b8213154a7c8fa910f77eb75518d4de4 commit: dfa91850347a9ff476c06e994d6572f3492e7044 Author: Jakov Smolić gentoo org> AuthorDate: Sat Sep 25 08:59:28 2021 +0000 Commit: Jakov Smolić gentoo org> CommitDate: Sat Sep 25 09:03:00 2021 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=dfa91850 dev-libs/libxml2: Revert "Fix cross-compilation with USE=python" - Attempted soultion was wrong because the script executes Python at a given path which can't work if it was compiled for a different architecture. This reverts commit 7963aaf058ccd97431c4852244a8685056235e11. Bug: https://bugs.gentoo.org/582130 Signed-off-by: Jakov Smolić gentoo.org> dev-libs/libxml2/libxml2-2.9.12-r5.ebuild | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/dev-libs/libxml2/libxml2-2.9.12-r5.ebuild b/dev-libs/libxml2/libxml2-2.9.12-r5.ebuild index f7802bf5e68..7fc0cfe3b05 100644 --- a/dev-libs/libxml2/libxml2-2.9.12-r5.ebuild +++ b/dev-libs/libxml2/libxml2-2.9.12-r5.ebuild @@ -165,7 +165,7 @@ multilib_src_configure() { # Odd build system, also see bug #582130 run_in_build_dir libxml2_configure \ - "--with-python=${ESYSROOT}/${PYTHON}" + "--with-python=${EPYTHON}" \ "--with-python-install-dir=$(python_get_sitedir)" }