diff options
author | 2023-03-23 17:39:41 +0100 | |
---|---|---|
committer | 2023-03-26 13:33:40 +0200 | |
commit | f9a2ade1c7b0642764f8b29f2a3d764608a11a7e (patch) | |
tree | 96d7bec4bab561750ca8b1df756e408e8f67ac2f | |
parent | kde.org.eclass: Quote argument of ":" command (diff) | |
download | gentoo-f9a2ade1c7b0642764f8b29f2a3d764608a11a7e.tar.gz gentoo-f9a2ade1c7b0642764f8b29f2a3d764608a11a7e.tar.bz2 gentoo-f9a2ade1c7b0642764f8b29f2a3d764608a11a7e.zip |
kernel-2.eclass: Quote argument of ":" command
This avoids globbing, see: https://www.shellcheck.net/wiki/SC2223
Signed-off-by: Ulrich Müller <ulm@gentoo.org>
-rw-r--r-- | eclass/kernel-2.eclass | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/eclass/kernel-2.eclass b/eclass/kernel-2.eclass index 3c78aa5a8445..4563cc71028c 100644 --- a/eclass/kernel-2.eclass +++ b/eclass/kernel-2.eclass @@ -299,13 +299,13 @@ if [[ ${CTARGET} == ${CHOST} && ${CATEGORY/cross-} != ${CATEGORY} ]]; then fi HOMEPAGE="https://www.kernel.org/ https://wiki.gentoo.org/wiki/Kernel ${HOMEPAGE}" -: ${LICENSE:="GPL-2"} +: "${LICENSE:="GPL-2"}" # No need to run scanelf/strip on kernel sources/headers (bug #134453). RESTRICT="binchecks strip" # set LINUX_HOSTCFLAGS if not already set -: ${LINUX_HOSTCFLAGS:="-Wall -Wstrict-prototypes -Os -fomit-frame-pointer -I${S}/include"} +: "${LINUX_HOSTCFLAGS:="-Wall -Wstrict-prototypes -Os -fomit-frame-pointer -I${S}/include"}" # @FUNCTION: debug-print-kernel2-variables |