summaryrefslogtreecommitdiffstats
path: root/meta/lib/oe/package_manager.py
diff options
context:
space:
mode:
Diffstat (limited to 'meta/lib/oe/package_manager.py')
-rw-r--r--meta/lib/oe/package_manager.py6
1 files changed, 3 insertions, 3 deletions
diff --git a/meta/lib/oe/package_manager.py b/meta/lib/oe/package_manager.py
index 3c1e74f43d..69100f16c1 100644
--- a/meta/lib/oe/package_manager.py
+++ b/meta/lib/oe/package_manager.py
@@ -1274,9 +1274,9 @@ class OpkgPM(PackageManager):
1274 1274
1275 with open(cfg_file_name, "w+") as cfg_file: 1275 with open(cfg_file_name, "w+") as cfg_file:
1276 cfg_file.write("src/gz local-%s %s/%s" % 1276 cfg_file.write("src/gz local-%s %s/%s" %
1277 arch, 1277 (arch,
1278 self.d.getVar('FEED_DEPLOYDIR_BASE_URI', True), 1278 self.d.getVar('FEED_DEPLOYDIR_BASE_URI', True),
1279 arch) 1279 arch))
1280 1280
1281 def _create_config(self): 1281 def _create_config(self):
1282 with open(self.config_file, "w+") as config_file: 1282 with open(self.config_file, "w+") as config_file: