commit: 5959306bf936faf3cb842c69422eb3f48632bac1
Author: Joonas Niilola <juippis <AT> gentoo <DOT> org>
AuthorDate: Sat May 6 06:37:29 2023 +0000
Commit: Joonas Niilola <juippis <AT> gentoo <DOT> org>
CommitDate: Sat May 6 08:18:43 2023 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=5959306b
www-client/firefox: switch jumbo-build bash logic from "! -z" to "-n"
Signed-off-by: Joonas Niilola <juippis <AT> gentoo.org>
www-client/firefox/firefox-112.0.2.ebuild | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/www-client/firefox/firefox-112.0.2.ebuild
b/www-client/firefox/firefox-112.0.2.ebuild
index adcc183aa1d2..2813d365df47 100644
--- a/www-client/firefox/firefox-112.0.2.ebuild
+++ b/www-client/firefox/firefox-112.0.2.ebuild
@@ -669,7 +669,7 @@ src_prepare() {
# Respect choice for "jumbo-build"
# Changing the value for FILES_PER_UNIFIED_FILE may not work, see
#905431
- if [[ ! -z ${FILES_PER_UNIFIED_FILE} ]] && use jumbo-build; then
+ if [[ -n ${FILES_PER_UNIFIED_FILE} ]] && use jumbo-build; then
local my_files_per_unified_file=${FILES_PER_UNIFIED_FILE:=16}
elog ""
elog "jumbo-build defaults modified to
${my_files_per_unified_file}."