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 | 46288bf98e12139045754efa23dd2a9d87dd0611 (patch) | |
tree | a01e710e5982ab7cf211319345cd76049bdaaac5 /target/linux/x86/image | |
parent | 0a9e05fb0ede4ea14abba9cd7dd73cbade70785f (diff) | |
download | upstream-46288bf98e12139045754efa23dd2a9d87dd0611.tar.gz upstream-46288bf98e12139045754efa23dd2a9d87dd0611.tar.bz2 upstream-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/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 |