summaryrefslogtreecommitdiff
path: root/target
diff options
context:
space:
mode:
authorPeter Korsgaard <jacmet@sunsite.dk>2009-03-24 19:57:48 +0000
committerPeter Korsgaard <jacmet@sunsite.dk>2009-03-24 19:57:48 +0000
commit30141c22ee5cba9e1c1fca707872f569f0f62573 (patch)
treeb29041e2c72c491fce5661827a1782990815d975 /target
parenta91177bf43295df5229c091f937c1d6798ab6a86 (diff)
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')
-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