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) server-digest SHA256) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id 79C9A158086 for ; Wed, 12 Jan 2022 06:13:09 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 816062BC024; Wed, 12 Jan 2022 06:13:07 +0000 (UTC) Received: from smtp.gentoo.org (woodpecker.gentoo.org [140.211.166.183]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits) server-digest SHA256) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id E495D2BC024 for ; Wed, 12 Jan 2022 06:13:06 +0000 (UTC) Received: from oystercatcher.gentoo.org (oystercatcher.gentoo.org [148.251.78.52]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits) server-digest SHA256) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 45FFC34308E for ; Wed, 12 Jan 2022 06:13:05 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 2E8D1263 for ; Wed, 12 Jan 2022 06:13:03 +0000 (UTC) From: "Joonas Niilola" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Joonas Niilola" Message-ID: <1641967807.6841381ab063576cf334e9f11b7d8500ebd5b696.juippis@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: dev-libs/nspr/ X-VCS-Repository: repo/gentoo X-VCS-Files: dev-libs/nspr/nspr-4.32.ebuild dev-libs/nspr/nspr-4.33.ebuild X-VCS-Directories: dev-libs/nspr/ X-VCS-Committer: juippis X-VCS-Committer-Name: Joonas Niilola X-VCS-Revision: 6841381ab063576cf334e9f11b7d8500ebd5b696 X-VCS-Branch: master Date: Wed, 12 Jan 2022 06:13:03 +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: c0dda587-ef82-47d3-a895-a93daf5eb43a X-Archives-Hash: 27ea3700947a86d1e29041dcf381ccbc commit: 6841381ab063576cf334e9f11b7d8500ebd5b696 Author: Joonas Niilola gentoo org> AuthorDate: Wed Jan 12 06:10:07 2022 +0000 Commit: Joonas Niilola gentoo org> CommitDate: Wed Jan 12 06:10:07 2022 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=6841381a dev-libs/nspr: respect $AS settings (revert revert) This reverts commit 773b7471a42cb6169f97264fe07d5de95f655cb3. - commit was reviewed and tested. - we'd like to work with the author(s) directly in future and not through hoops, it'd be healthier in longterm too. Signed-off-by: Joonas Niilola gentoo.org> dev-libs/nspr/nspr-4.32.ebuild | 3 ++- dev-libs/nspr/nspr-4.33.ebuild | 3 ++- 2 files changed, 4 insertions(+), 2 deletions(-) diff --git a/dev-libs/nspr/nspr-4.32.ebuild b/dev-libs/nspr/nspr-4.32.ebuild index d6db3c7ef9ee..7be0ae41e449 100644 --- a/dev-libs/nspr/nspr-4.32.ebuild +++ b/dev-libs/nspr/nspr-4.32.ebuild @@ -60,7 +60,7 @@ multilib_src_configure() { # We use the standard BUILD_xxx but nspr uses HOST_xxx tc-export_build_env BUILD_CC export HOST_CC=${BUILD_CC} HOST_CFLAGS=${BUILD_CFLAGS} HOST_LDFLAGS=${BUILD_LDFLAGS} - tc-export AR CC CXX RANLIB + tc-export AR AS CC CXX RANLIB [[ ${CBUILD} != ${CHOST} ]] \ && export CROSS_COMPILE=1 \ || unset CROSS_COMPILE @@ -98,6 +98,7 @@ multilib_src_configure() { # Ancient autoconf needs help finding the right tools. LC_ALL="C" ECONF_SOURCE="${S}/nspr" \ ac_cv_path_AR="${AR}" \ + ac_cv_path_AS="${AS}" \ econf "${myconf[@]}" } diff --git a/dev-libs/nspr/nspr-4.33.ebuild b/dev-libs/nspr/nspr-4.33.ebuild index c0dd76d1aa2e..3f4ceb883969 100644 --- a/dev-libs/nspr/nspr-4.33.ebuild +++ b/dev-libs/nspr/nspr-4.33.ebuild @@ -60,7 +60,7 @@ multilib_src_configure() { # We use the standard BUILD_xxx but nspr uses HOST_xxx tc-export_build_env BUILD_CC export HOST_CC=${BUILD_CC} HOST_CFLAGS=${BUILD_CFLAGS} HOST_LDFLAGS=${BUILD_LDFLAGS} - tc-export AR CC CXX RANLIB + tc-export AR AS CC CXX RANLIB [[ ${CBUILD} != ${CHOST} ]] \ && export CROSS_COMPILE=1 \ || unset CROSS_COMPILE @@ -98,6 +98,7 @@ multilib_src_configure() { # Ancient autoconf needs help finding the right tools. LC_ALL="C" ECONF_SOURCE="${S}/nspr" \ ac_cv_path_AR="${AR}" \ + ac_cv_path_AS="${AS}" \ econf "${myconf[@]}" }