commit: f8ce2893eaad443efd90b5d93a11e093380113df
Author: Thomas Deutschmann <whissi <AT> gentoo <DOT> org>
AuthorDate: Wed Jul 15 21:35:50 2020 +0000
Commit: Thomas Deutschmann <whissi <AT> gentoo <DOT> org>
CommitDate: Thu Jul 16 14:29:15 2020 +0000
URL: https://gitweb.gentoo.org/proj/genkernel.git/commit/?id=f8ce2893
gen_determineargs.sh: determine_real_args(): Fix style
Signed-off-by: Thomas Deutschmann <whissi <AT> gentoo.org>
gen_determineargs.sh | 6 +++---
1 file changed, 3 insertions(+), 3 deletions(-)
diff --git a/gen_determineargs.sh b/gen_determineargs.sh
index b1c038d..fca82b2 100755
--- a/gen_determineargs.sh
+++ b/gen_determineargs.sh
@@ -591,8 +591,8 @@ determine_real_args() {
vars_to_initialize+=( "BUSYBOX_CONFIG" )
vars_to_initialize+=( "DEFAULT_KERNEL_CONFIG" )
- local binpkgs=( $(compgen -A variable |grep '^GKPKG_.*BINPKG$') )
- local binpkg=
+ local binpkgs=( $(compgen -A variable |grep '^GKPKG_.*_BINPKG$') )
+ local binpkg
for binpkg in "${binpkgs[@]}"
do
pkg_prefixes+=( "${binpkg%_BINPKG}" )
@@ -608,7 +608,7 @@ determine_real_args() {
done
unset v vars_to_initialize
- declare -gA GKPKG_LOOKUP_TABLE=
+ declare -gA GKPKG_LOOKUP_TABLE=()
local pn_varname= pn=
for v in "${pkg_prefixes[@]}"
do