mirror of
https://git.yoctoproject.org/poky
synced 2026-02-26 19:39:40 +01:00
tune-i586: fix hardcoded TUNE_PKGARCH
Use TUNE_FEATURES to determine the setting to TUNE_PKGARCH, which fixes the wrong setting of PACKAGE_ARCH in multilib case. (From OE-Core rev: 0762e1ff5e29487f5b25a069e31257275415a3e6) Signed-off-by: Dongxiao Xu <dongxiao.xu@intel.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
This commit is contained in:
committed by
Richard Purdie
parent
ccf807a013
commit
0f7bf53faa
@@ -1,5 +1,6 @@
|
||||
DEFAULTTUNE ?= "i586"
|
||||
TUNE_PKGARCH ?= "i586"
|
||||
TUNE_PKGARCH_TMP = "${@bb.utils.contains("TUNE_FEATURES", "m32", "x86", "x86_64", d)}"
|
||||
TUNE_PKGARCH ?= "${@bb.utils.contains("TUNE_FEATURES", "i586", "i586", TUNE_PKGARCH_TMP, d)}"
|
||||
|
||||
require conf/machine/include/ia32/arch-ia32.inc
|
||||
|
||||
|
||||
Reference in New Issue
Block a user