From cf493d5dcedbf1df2e73c495ed9c067480325323 Mon Sep 17 00:00:00 2001 From: Andreas Sturmlechner Date: Tue, 24 Dec 2019 15:23:36 +0100 Subject: cmake.eclass: src_configure: Make sure mycmakeargs is initialised at all Closes: https://bugs.gentoo.org/703638 Signed-off-by: Andreas Sturmlechner --- eclass/cmake.eclass | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) (limited to 'eclass/cmake.eclass') diff --git a/eclass/cmake.eclass b/eclass/cmake.eclass index 20ba229377b..834df7f4c33 100644 --- a/eclass/cmake.eclass +++ b/eclass/cmake.eclass @@ -492,8 +492,9 @@ cmake_src_configure() { _EOF_ fi - # Make the array a local variable since <=portage-2.1.6.x does not - # support global arrays (see bug #297255). + # Make the array a local variable since <=portage-2.1.6.x does not support + # global arrays (see bug #297255). But first make sure it is initialised. + [[ -z ${mycmakeargs} ]] && declare -a mycmakeargs=() local mycmakeargstype=$(declare -p mycmakeargs 2>&-) if [[ "${mycmakeargstype}" != "declare -a mycmakeargs="* ]]; then die "mycmakeargs must be declared as array" -- cgit v1.2.3