From: Peter Korsgaard Date: Tue, 24 Mar 2009 19:57:48 +0000 (-0000) Subject: target/device/x86: only include Makefile if BR2_TARGET_X86 is enabled X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=30141c22ee5cba9e1c1fca707872f569f0f62573;p=buildroot.git target/device/x86: only include Makefile if BR2_TARGET_X86 is enabled Fixes build breakage for !BR2_TARGET_X86 in kernel headers. --- diff --git a/target/device/x86/Makefile.in b/target/device/x86/Makefile.in index 68e802abaa..d7d12fa7a6 100644 --- a/target/device/x86/Makefile.in +++ b/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