summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorRichard Leitner <richard.leitner@skidata.com>2020-10-29 19:20:14 +0100
committerRichard Purdie <richard.purdie@linuxfoundation.org>2021-02-26 15:30:40 +0000
commit1ff574dd168282c6ecf20e37691181e5559e047d (patch)
tree8f4e99aca3987227c812052e1f8494bd3a178555
parent94e5e601560e2b5c1b7695e6ea49905cfc9f3cb0 (diff)
downloadpoky-1ff574dd168282c6ecf20e37691181e5559e047d.tar.gz
deb: export INTERCEPT_DIR for remove actions
During the do_populate_sdk task apt-get purge is called by deb's remove function. This fails with error messages similiar to the following one if any of the included packages uses intercepts as the INTERCEPT_DIR isn't exported: .../*.postinst: line 4: /postinst_intercept: No such file or directory Therefore fix it by exporting the INTERCEPT_DIR variable within the remove function. (From OE-Core rev: 697c75071932a48ec8d34b778fca68e18bec433a) Signed-off-by: Richard Leitner <richard.leitner@skidata.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org> (cherry picked from commit f18adf53dd4bf5dd3adef82b2dcc34a6cdfd0c89) Signed-off-by: Anuj Mittal <anuj.mittal@intel.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
-rw-r--r--meta/lib/oe/package_manager/deb/__init__.py2
1 files changed, 2 insertions, 0 deletions
diff --git a/meta/lib/oe/package_manager/deb/__init__.py b/meta/lib/oe/package_manager/deb/__init__.py
index 26157f591a..5120920e70 100644
--- a/meta/lib/oe/package_manager/deb/__init__.py
+++ b/meta/lib/oe/package_manager/deb/__init__.py
@@ -312,6 +312,8 @@ class DpkgPM(OpkgDpkgPM):
312 if not pkgs: 312 if not pkgs:
313 return 313 return
314 314
315 os.environ['INTERCEPT_DIR'] = self.intercepts_dir
316
315 if with_dependencies: 317 if with_dependencies:
316 os.environ['APT_CONFIG'] = self.apt_conf_file 318 os.environ['APT_CONFIG'] = self.apt_conf_file
317 cmd = "%s purge %s" % (self.apt_get_cmd, ' '.join(pkgs)) 319 cmd = "%s purge %s" % (self.apt_get_cmd, ' '.join(pkgs))