[OE-core] [PATCH] bitbake.conf: fix ineffective include conf/target/${TARGET_SYS}.conf

2017-02-22 Thread Andre McCurdy
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 --- meta/conf/

Re: [OE-core] [PATCH] bitbake.conf: fix ineffective include conf/target/${TARGET_SYS}.conf

2017-08-24 Thread Patrick Ohly
On Wed, 2017-02-22 at 02:21 -0800, Andre McCurdy wrote: > 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/

Re: [OE-core] [PATCH] bitbake.conf: fix ineffective include conf/target/${TARGET_SYS}.conf

2017-08-24 Thread Richard Purdie
On Thu, 2017-08-24 at 11:35 +0200, Patrick Ohly wrote: > On Wed, 2017-02-22 at 02:21 -0800, Andre McCurdy wrote: > > > > 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