1
0
mirror of https://git.yoctoproject.org/poky synced 2026-05-30 00:20:08 +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: b5e8cad5a782015f2216325203847c287c778cac)

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 909dd5b306
commit 317fc4fbd0
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)
}