diff options
author | Peter Korsgaard <jacmet@sunsite.dk> | 2009-03-24 19:57:48 +0000 |
---|---|---|
committer | Peter Korsgaard <jacmet@sunsite.dk> | 2009-03-24 19:57:48 +0000 |
commit | 30141c22ee5cba9e1c1fca707872f569f0f62573 (patch) | |
tree | b29041e2c72c491fce5661827a1782990815d975 | |
parent | a91177bf43295df5229c091f937c1d6798ab6a86 (diff) | |
download | buildroot-novena-30141c22ee5cba9e1c1fca707872f569f0f62573.tar.gz buildroot-novena-30141c22ee5cba9e1c1fca707872f569f0f62573.zip |
target/device/x86: only include Makefile if BR2_TARGET_X86 is enabled
Fixes build breakage for !BR2_TARGET_X86 in kernel headers.
-rw-r--r-- | target/device/x86/Makefile.in | 2 |
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 |