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

Fixes build breakage for !BR2_TARGET_X86 in kernel headers.
This commit is contained in:
Peter Korsgaard 2009-03-24 19:57:48 +00:00
parent a91177bf43
commit 30141c22ee
1 changed files with 1 additions and 1 deletions

View File

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