summaryrefslogtreecommitdiffstats
path: root/target/linux/x86/image
diff options
context:
space:
mode:
authorFelix Fietkau <nbd@openwrt.org>2012-11-09 10:53:36 +0000
committerFelix Fietkau <nbd@openwrt.org>2012-11-09 10:53:36 +0000
commit46288bf98e12139045754efa23dd2a9d87dd0611 (patch)
treea01e710e5982ab7cf211319345cd76049bdaaac5 /target/linux/x86/image
parent0a9e05fb0ede4ea14abba9cd7dd73cbade70785f (diff)
downloadmaster-31e0f0ae-46288bf98e12139045754efa23dd2a9d87dd0611.tar.gz
master-31e0f0ae-46288bf98e12139045754efa23dd2a9d87dd0611.tar.bz2
master-31e0f0ae-46288bf98e12139045754efa23dd2a9d87dd0611.zip
x86: use $(strip) for the at_keyboard check
SVN-Revision: 34127
Diffstat (limited to 'target/linux/x86/image')
-rw-r--r--target/linux/x86/image/Makefile2
1 files changed, 1 insertions, 1 deletions
diff --git a/target/linux/x86/image/Makefile b/target/linux/x86/image/Makefile
index a5f7722518..e31734870f 100644
--- a/target/linux/x86/image/Makefile
+++ b/target/linux/x86/image/Makefile
@@ -18,7 +18,7 @@ GRUB_CONSOLE_CMDLINE =
USE_ATKBD = generic kvm_guest
-ifneq ($(foreach subtarget,$(USE_ATKBD),$(CONFIG_TARGET_x86_$(subtarget))),)
+ifneq ($(strip $(foreach subtarget,$(USE_ATKBD),$(CONFIG_TARGET_x86_$(subtarget)))),)
GRUB2_MODULES += at_keyboard
GRUB2_MODULES_ISO += at_keyboard
endif