Skip to content

Commit ea7c9a3

Browse files
committed
linux-qcom-next: fix missing space when appending prune.config
Add a leading space when appending prune.config to KBUILD_CONFIG_EXTRA. Without this, configs may concatenate incorrectly, causing build issues. This addresses a regression introduced by commit d1e9628. Signed-off-by: Viswanath Kraleti <[email protected]>
1 parent 026ef6f commit ea7c9a3

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

recipes-kernel/linux/linux-qcom-next_git.bb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@ KBUILD_DEFCONFIG ?= "defconfig"
3737
KBUILD_DEFCONFIG:qcom-armv7a = "qcom_defconfig"
3838

3939
KBUILD_CONFIG_EXTRA = "${@bb.utils.contains('DISTRO_FEATURES', 'hardened', '${S}/kernel/configs/hardening.config', '', d)}"
40-
KBUILD_CONFIG_EXTRA:append:aarch64 = "${S}/arch/arm64/configs/prune.config"
40+
KBUILD_CONFIG_EXTRA:append:aarch64 = " ${S}/arch/arm64/configs/prune.config"
4141

4242
do_configure:prepend() {
4343
# Use a copy of the 'defconfig' from the actual repo to merge fragments

0 commit comments

Comments
 (0)