From b33e644da0d8b6edb97257b16430b545c289883a Mon Sep 17 00:00:00 2001 From: Andre McCurdy Date: Wed, 22 Feb 2017 02:21:42 -0800 Subject: bitbake.conf: fix ineffective include conf/target/${TARGET_SYS}.conf TARGET_SYS is defined in terms of TARGET_ARCH, so it's not valid until after TUNE_ARCH has been set by the machine config. The original order of includes resulted in an attempt to include non-existent files such as: conf/target/INVALID-oe-linux.conf Signed-off-by: Andre McCurdy Signed-off-by: Ross Burton --- meta/conf/bitbake.conf | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'meta/conf') diff --git a/meta/conf/bitbake.conf b/meta/conf/bitbake.conf index 16235a43d2..ade0eff609 100644 --- a/meta/conf/bitbake.conf +++ b/meta/conf/bitbake.conf @@ -705,9 +705,9 @@ include conf/auto.conf include conf/local.conf require conf/multiconfig/${BB_CURRENT_MC}.conf include conf/build/${BUILD_SYS}.conf -include conf/target/${TARGET_SYS}.conf include conf/machine/${MACHINE}.conf include conf/machine-sdk/${SDKMACHINE}.conf +include conf/target/${TARGET_SYS}.conf include conf/distro/${DISTRO}.conf include conf/distro/defaultsetup.conf include conf/documentation.conf -- cgit 1.2.3-korg