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.py16
1 files changed, 8 insertions, 8 deletions
diff --git a/meta/lib/oe/package_manager.py b/meta/lib/oe/package_manager.py
index 5776952523..26f6466ed1 100644
--- a/meta/lib/oe/package_manager.py
+++ b/meta/lib/oe/package_manager.py
@@ -1507,14 +1507,14 @@ class OpkgPM(PackageManager):
1507 self.d.getVar('FEED_DEPLOYDIR_BASE_URI', True), 1507 self.d.getVar('FEED_DEPLOYDIR_BASE_URI', True),
1508 arch)) 1508 arch))
1509 1509
1510 if self.opkg_dir != '/var/lib/opkg': 1510 if self.opkg_dir != '/var/lib/opkg':
1511 # There is no command line option for this anymore, we need to add 1511 # There is no command line option for this anymore, we need to add
1512 # info_dir and status_file to config file, if OPKGLIBDIR doesn't have 1512 # info_dir and status_file to config file, if OPKGLIBDIR doesn't have
1513 # the default value of "/var/lib" as defined in opkg: 1513 # the default value of "/var/lib" as defined in opkg:
1514 # libopkg/opkg_conf.h:#define OPKG_CONF_DEFAULT_INFO_DIR "/var/lib/opkg/info" 1514 # libopkg/opkg_conf.h:#define OPKG_CONF_DEFAULT_INFO_DIR "/var/lib/opkg/info"
1515 # libopkg/opkg_conf.h:#define OPKG_CONF_DEFAULT_STATUS_FILE "/var/lib/opkg/status" 1515 # libopkg/opkg_conf.h:#define OPKG_CONF_DEFAULT_STATUS_FILE "/var/lib/opkg/status"
1516 cfg_file.write("option info_dir %s\n" % os.path.join(self.d.getVar('OPKGLIBDIR', True), 'opkg', 'info')) 1516 cfg_file.write("option info_dir %s\n" % os.path.join(self.d.getVar('OPKGLIBDIR', True), 'opkg', 'info'))
1517 cfg_file.write("option status_file %s\n" % os.path.join(self.d.getVar('OPKGLIBDIR', True), 'opkg', 'status')) 1517 cfg_file.write("option status_file %s\n" % os.path.join(self.d.getVar('OPKGLIBDIR', True), 'opkg', 'status'))
1518 1518
1519 1519
1520 def _create_config(self): 1520 def _create_config(self):