summaryrefslogtreecommitdiffstats
path: root/meta/lib/oe
diff options
context:
space:
mode:
Diffstat (limited to 'meta/lib/oe')
-rw-r--r--meta/lib/oe/package_manager/__init__.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/meta/lib/oe/package_manager/__init__.py b/meta/lib/oe/package_manager/__init__.py
index 8f7b60e077..80bc1a6bc6 100644
--- a/meta/lib/oe/package_manager/__init__.py
+++ b/meta/lib/oe/package_manager/__init__.py
@@ -321,7 +321,7 @@ class PackageManager(object, metaclass=ABCMeta):
321 # TODO don't have sdk here but have a property on the superclass 321 # TODO don't have sdk here but have a property on the superclass
322 # (and respect in install_complementary) 322 # (and respect in install_complementary)
323 if sdk: 323 if sdk:
324 pkgdatadir = self.d.expand("${TMPDIR}/pkgdata/${SDK_SYS}") 324 pkgdatadir = self.d.getVar("PKGDATA_DIR_SDK")
325 else: 325 else:
326 pkgdatadir = self.d.getVar("PKGDATA_DIR") 326 pkgdatadir = self.d.getVar("PKGDATA_DIR")
327 327