From b622a2ec935dd8d9e60a2c92bcbacc5e57f5e9c7 Mon Sep 17 00:00:00 2001 From: Mike Pagano Date: Fri, 1 Jan 2021 14:17:38 -0500 Subject: kernel-2.eclass: Handle stricter bash 5.1 expansion rules Set default value in the case that STRICT_COUNT is unset. Thanks to jospezial for reporting Closes: https://bugs.gentoo.org/762319 Signed-off-by: Mike Pagano --- eclass/kernel-2.eclass | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'eclass/kernel-2.eclass') diff --git a/eclass/kernel-2.eclass b/eclass/kernel-2.eclass index cad7307dc06f..dccd39ec8f2f 100644 --- a/eclass/kernel-2.eclass +++ b/eclass/kernel-2.eclass @@ -1158,7 +1158,7 @@ unipatch() { if echo ${i} | grep -qs -e "\.tar" -e "\.tbz" -e "\.tgz" ; then if [ -n "${UNIPATCH_STRICTORDER}" ]; then unset z - STRICT_COUNT=$((10#${STRICT_COUNT} + 1)) + STRICT_COUNT=$((10#${STRICT_COUNT:=0} + 1)) for((y=0; y<$((6 - ${#STRICT_COUNT})); y++)); do z="${z}0"; done @@ -1207,7 +1207,7 @@ unipatch() { if [ -n "${UNIPATCH_STRICTORDER}" ]; then unset z - STRICT_COUNT=$((10#${STRICT_COUNT} + 1)) + STRICT_COUNT=$((10#${STRICT_COUNT:=0} + 1)) for((y=0; y<$((6 - ${#STRICT_COUNT})); y++)); do z="${z}0"; done -- cgit v1.2.3-65-gdbad