1
0
mirror of https://git.yoctoproject.org/poky synced 2026-06-03 01:40:07 +00:00

multilib: add MLPREFIX to deploy folder

Add MLPREFIX to multilib deploy forlder to avoid the confliction between
multilib and normal package deploy directory.

(From OE-Core rev: 18b8d1f7769b63725c3b6883298a841806cd06ab)

Signed-off-by: Dongxiao Xu <dongxiao.xu@intel.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
This commit is contained in:
Dongxiao Xu
2011-09-28 19:44:28 +08:00
committed by Richard Purdie
parent 0f7bf53faa
commit f40b763c69
3 changed files with 9 additions and 8 deletions
-5
View File
@@ -92,9 +92,4 @@ python __anonymous () {
multilib_map_variable("PACKAGES_DYNAMIC", variant, d)
multilib_map_variable("PACKAGE_INSTALL", variant, d)
multilib_map_variable("INITSCRIPT_PACKAGES", variant, d)
package_arch = d.getVar("PACKAGE_ARCH", True)
machine_arch = d.getVar("MACHINE_ARCH", True)
if package_arch == machine_arch:
d.setVar("PACKAGE_ARCH", variant + "_" + package_arch)
}