diff options
author | Robert Yang <liezhi.yang@windriver.com> | 2017-10-31 15:51:16 +0800 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2018-01-06 22:32:22 +0000 |
commit | c60a2c3ffe338d880848c2704ee696d1e892b9cc (patch) | |
tree | 008178a31ff2e64c0b931397de0ad3abfd6bb74b | |
parent | 70c122402fcc22fcccb6fc155717e0605588a33a (diff) | |
download | poky-c60a2c3ffe338d880848c2704ee696d1e892b9cc.tar.gz |
package_manager.py: remove obsolete MULTILIB_ARCHS
It had been removed since 2011:
commit b774bf44ef004276da12a83ebd69715c00b596ac
Author: Lianhao Lu <lianhao.lu@intel.com>
Date: Tue Aug 16 16:26:49 2011 +0800
package(_ipk).bbclass: opkg using ALL_MULTILIB_PACKAGE_ARCHS
(From OE-Core rev: e03cfb5a04e359c0bacb002dc80f3348301445d3)
Signed-off-by: Robert Yang <liezhi.yang@windriver.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
-rw-r--r-- | meta/lib/oe/package_manager.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/meta/lib/oe/package_manager.py b/meta/lib/oe/package_manager.py index 99d740bf2c..ea99165d61 100644 --- a/meta/lib/oe/package_manager.py +++ b/meta/lib/oe/package_manager.py | |||
@@ -120,7 +120,7 @@ class OpkgIndexer(Indexer): | |||
120 | def write_index(self): | 120 | def write_index(self): |
121 | arch_vars = ["ALL_MULTILIB_PACKAGE_ARCHS", | 121 | arch_vars = ["ALL_MULTILIB_PACKAGE_ARCHS", |
122 | "SDK_PACKAGE_ARCHS", | 122 | "SDK_PACKAGE_ARCHS", |
123 | "MULTILIB_ARCHS"] | 123 | ] |
124 | 124 | ||
125 | opkg_index_cmd = bb.utils.which(os.getenv('PATH'), "opkg-make-index") | 125 | opkg_index_cmd = bb.utils.which(os.getenv('PATH'), "opkg-make-index") |
126 | if self.d.getVar('PACKAGE_FEED_SIGN') == '1': | 126 | if self.d.getVar('PACKAGE_FEED_SIGN') == '1': |