diff options
author | Armin Kuster <akuster808@gmail.com> | 2018-04-04 10:10:09 -0700 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2018-04-05 15:13:48 +0100 |
commit | 2861ecf2245b414f3694c6db186c8d5d0ba17aea (patch) | |
tree | d8988e16a5cd934f71142e266e1c76bb03c05dad /meta | |
parent | 05696923f63499174554113d5b0c8b83b483d314 (diff) | |
download | poky-2861ecf2245b414f3694c6db186c8d5d0ba17aea.tar.gz |
package_manager: fix install_glob to use morty sdk pkgdir
(From OE-Core rev: c8ffc0a4456065479240de18e6080e90a7ee85c1)
Signed-off-by: Armin Kuster <akuster808@gmail.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'meta')
-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 ad63fa31bf..13717a7290 100644 --- a/meta/lib/oe/package_manager.py +++ b/meta/lib/oe/package_manager.py | |||
@@ -569,7 +569,7 @@ class PackageManager(object, metaclass=ABCMeta): | |||
569 | # TODO don't have sdk here but have a property on the superclass | 569 | # TODO don't have sdk here but have a property on the superclass |
570 | # (and respect in install_complementary) | 570 | # (and respect in install_complementary) |
571 | if sdk: | 571 | if sdk: |
572 | pkgdatadir = self.d.expand("${TMPDIR}/pkgdata/${SDK_SYS}") | 572 | pkgdatadir = self.d.expand("${STAGING_DIR}/${SDK_ARCH}-${SDKPKGSUFFIX}${SDK_VENDOR}-${SDK_OS}/pkgdata") |
573 | else: | 573 | else: |
574 | pkgdatadir = self.d.getVar("PKGDATA_DIR", True) | 574 | pkgdatadir = self.d.getVar("PKGDATA_DIR", True) |
575 | 575 | ||