summaryrefslogtreecommitdiffstats
path: root/target/device
diff options
context:
space:
mode:
authorPeter Korsgaard2009-03-24 20:57:48 +0100
committerPeter Korsgaard2009-03-24 20:57:48 +0100
commit30141c22ee5cba9e1c1fca707872f569f0f62573 (patch)
treeb29041e2c72c491fce5661827a1782990815d975 /target/device
parentpango: host build needs automake/autoconf (diff)
downloadbuildroot-30141c22ee5cba9e1c1fca707872f569f0f62573.tar.gz
buildroot-30141c22ee5cba9e1c1fca707872f569f0f62573.tar.xz
buildroot-30141c22ee5cba9e1c1fca707872f569f0f62573.zip
target/device/x86: only include Makefile if BR2_TARGET_X86 is enabled
Fixes build breakage for !BR2_TARGET_X86 in kernel headers.
Diffstat (limited to 'target/device')
-rw-r--r--target/device/x86/Makefile.in2
1 files changed, 1 insertions, 1 deletions
diff --git a/target/device/x86/Makefile.in b/target/device/x86/Makefile.in
index 68e802aba..d7d12fa7a 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