summaryrefslogtreecommitdiff
path: root/target/Makefile.in
diff options
context:
space:
mode:
authorUlf Samuelsson <ulf.samuelsson@atmel.com>2007-07-20 12:03:54 +0000
committerUlf Samuelsson <ulf.samuelsson@atmel.com>2007-07-20 12:03:54 +0000
commit4ccf17da47f4823e658900bcbfa598b255f5575a (patch)
tree4dd828f73eac13fac5eb9db3ff7843ebb5718694 /target/Makefile.in
parent65a964b6a7cec05e6259c67ae113c017dfd5407d (diff)
Fix Linux build if BR2_PACKAGE_LINUX_EXPERIMENTAL_CONFIG is not defined
Diffstat (limited to 'target/Makefile.in')
-rw-r--r--target/Makefile.in6
1 files changed, 2 insertions, 4 deletions
diff --git a/target/Makefile.in b/target/Makefile.in
index 7b377667c..e4f58ca2d 100644
--- a/target/Makefile.in
+++ b/target/Makefile.in
@@ -18,12 +18,10 @@ include target/*/*.mk
# We already did add the kernel target to TARGETS and now just pull in the rules
# to actually build this target.
-ifeq ($(strip $(subst ",,$(BR2_PACKAGE_LINUX_EXPERIMENTAL_CONFIG))),n)
-#"))
-include target/linux/Makefile.in
-endif
ifeq ($(strip $(subst ",,$(BR2_PACKAGE_LINUX_EXPERIMENTAL_CONFIG))),y)
#"))
include target/linux-experimental/Makefile.in
+else
+include target/linux/Makefile.in
endif