aboutsummaryrefslogtreecommitdiffstats
path: root/target/linux/x86
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
commit114523d5b7bb4691e73476664e74e71e5a169ade (patch)
treedac834ff7bc6f8cf5b698bcf33ceea0aca6f5a06 /target/linux/x86
parentce5e0d1df8624a42990e339fdd2f50ab3ee2ffca (diff)
downloadmaster-187ad058-114523d5b7bb4691e73476664e74e71e5a169ade.tar.gz
master-187ad058-114523d5b7bb4691e73476664e74e71e5a169ade.tar.bz2
master-187ad058-114523d5b7bb4691e73476664e74e71e5a169ade.zip
x86: use $(strip) for the at_keyboard check
git-svn-id: svn://svn.openwrt.org/openwrt/trunk@34127 3c298f89-4303-0410-b956-a3cf2f4a3e73
Diffstat (limited to 'target/linux/x86')
-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