瀏覽代碼

Fix Linux build if BR2_PACKAGE_LINUX_EXPERIMENTAL_CONFIG is not defined

Ulf Samuelsson 18 年之前
父節點
當前提交
4ccf17da47
共有 1 個文件被更改,包括 2 次插入4 次删除
  1. 2 4
      target/Makefile.in

+ 2 - 4
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