Browse Source

x86: use $(strip) for the at_keyboard check

SVN-Revision: 34127
Felix Fietkau 13 năm trước cách đây
mục cha
commit
46288bf98e
1 tập tin đã thay đổi với 1 bổ sung1 xóa
  1. 1 1
      target/linux/x86/image/Makefile

+ 1 - 1
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