diff options
author | Felix Fietkau <nbd@openwrt.org> | 2012-11-09 10:53:36 +0000 |
---|---|---|
committer | Felix Fietkau <nbd@openwrt.org> | 2012-11-09 10:53:36 +0000 |
commit | 114523d5b7bb4691e73476664e74e71e5a169ade (patch) | |
tree | dac834ff7bc6f8cf5b698bcf33ceea0aca6f5a06 | |
parent | ce5e0d1df8624a42990e339fdd2f50ab3ee2ffca (diff) | |
download | upstream-114523d5b7bb4691e73476664e74e71e5a169ade.tar.gz upstream-114523d5b7bb4691e73476664e74e71e5a169ade.tar.bz2 upstream-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
-rw-r--r-- | target/linux/x86/image/Makefile | 2 |
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 |