Fix Linux build if BR2_PACKAGE_LINUX_EXPERIMENTAL_CONFIG is not defined
authorUlf Samuelsson <ulf.samuelsson@atmel.com>
Fri, 20 Jul 2007 12:03:54 +0000 (12:03 -0000)
committerUlf Samuelsson <ulf.samuelsson@atmel.com>
Fri, 20 Jul 2007 12:03:54 +0000 (12:03 -0000)
target/Makefile.in

index 7b377667ce48e0536107ba67e183645ed5ca839c..e4f58ca2d2cd0f218d0b38974487c98792e40e17 100644 (file)
@@ -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