Procházet zdrojové kódy

target/device/x86: only include Makefile if BR2_TARGET_X86 is enabled

Fixes build breakage for !BR2_TARGET_X86 in kernel headers.
Peter Korsgaard před 16 roky
rodič
revize
30141c22ee
1 změnil soubory, kde provedl 1 přidání a 1 odebrání
  1. 1 1
      target/device/x86/Makefile.in

+ 1 - 1
target/device/x86/Makefile.in

@@ -1,4 +1,4 @@
-ifeq ($(BR2_i386),y)
+ifeq ($(BR2_TARGET_X86),y)
 include target/device/x86/*/Makefile.in
 endif