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 3EAAF158086 for ; Sat, 23 Oct 2021 00:33:49 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 64BFCE0878; Sat, 23 Oct 2021 00:33:48 +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 271B3E0878 for ; Sat, 23 Oct 2021 00:33:48 +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 36978343214 for ; Sat, 23 Oct 2021 00:33:46 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id C45FD172 for ; Sat, 23 Oct 2021 00:33:44 +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: <1634949217.a2d09e9e73b5ad332dac42a05f10dfd0b43f887f.whissi@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: www-client/firefox/ X-VCS-Repository: repo/gentoo X-VCS-Files: www-client/firefox/firefox-78.15.0.ebuild www-client/firefox/firefox-93.0.ebuild X-VCS-Directories: www-client/firefox/ X-VCS-Committer: whissi X-VCS-Committer-Name: Thomas Deutschmann X-VCS-Revision: a2d09e9e73b5ad332dac42a05f10dfd0b43f887f X-VCS-Branch: master Date: Sat, 23 Oct 2021 00:33:44 +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: 72ac9212-8a00-4b8f-95a2-da929a8ec586 X-Archives-Hash: b1bee92d1c6836557bd0932664842361 commit: a2d09e9e73b5ad332dac42a05f10dfd0b43f887f Author: Thomas Deutschmann gentoo org> AuthorDate: Sat Oct 23 00:05:46 2021 +0000 Commit: Thomas Deutschmann gentoo org> CommitDate: Sat Oct 23 00:33:37 2021 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=a2d09e9e www-client/firefox: set MOZBUILD_STATE_PATH This will silence a warning regarding default path. Package-Manager: Portage-3.0.28, Repoman-3.0.3 Signed-off-by: Thomas Deutschmann gentoo.org> www-client/firefox/firefox-78.15.0.ebuild | 3 +++ www-client/firefox/firefox-93.0.ebuild | 3 +++ 2 files changed, 6 insertions(+) diff --git a/www-client/firefox/firefox-78.15.0.ebuild b/www-client/firefox/firefox-78.15.0.ebuild index 3477f976722..413da4c11ab 100644 --- a/www-client/firefox/firefox-78.15.0.ebuild +++ b/www-client/firefox/firefox-78.15.0.ebuild @@ -605,6 +605,9 @@ src_configure() { # python/mach/mach/mixin/process.py fails to detect SHELL export SHELL="${EPREFIX}/bin/bash" + # Set state path + export MOZBUILD_STATE_PATH="${BUILD_DIR}" + # Set MOZCONFIG export MOZCONFIG="${S}/.mozconfig" diff --git a/www-client/firefox/firefox-93.0.ebuild b/www-client/firefox/firefox-93.0.ebuild index 662a0648d42..0a7fa6f8316 100644 --- a/www-client/firefox/firefox-93.0.ebuild +++ b/www-client/firefox/firefox-93.0.ebuild @@ -605,6 +605,9 @@ src_configure() { # python/mach/mach/mixin/process.py fails to detect SHELL export SHELL="${EPREFIX}/bin/bash" + # Set state path + export MOZBUILD_STATE_PATH="${BUILD_DIR}" + # Set MOZCONFIG export MOZCONFIG="${S}/.mozconfig"