diff options
author | Hongxu Jia <hongxu.jia@windriver.com> | 2014-01-27 14:32:02 +0800 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2014-02-11 11:53:42 +0000 |
commit | 4df92c634e2f509ba30d27ab774763a45f7189f7 (patch) | |
tree | 2fb0c838b728439d0c03a048eb21da2f40b574bd /meta | |
parent | 62c625e3c15154db8e0dfcd0512ddac52a5e5fbf (diff) | |
download | poky-4df92c634e2f509ba30d27ab774763a45f7189f7.tar.gz |
lib/oe/rootfs.py: fix invoking rpm _handle_intercept_failure failed
(From OE-Core rev: 7858c8ac141a7bf66c65ddc7e4b39ad937a7e084)
Signed-off-by: Hongxu Jia <hongxu.jia@windriver.com>
Signed-off-by: Laurentiu Palcu <laurentiu.palcu@intel.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'meta')
-rw-r--r-- | meta/lib/oe/rootfs.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/meta/lib/oe/rootfs.py b/meta/lib/oe/rootfs.py index c149c94271..cc986273d9 100644 --- a/meta/lib/oe/rootfs.py +++ b/meta/lib/oe/rootfs.py | |||
@@ -376,7 +376,7 @@ class RpmRootfs(Rootfs): | |||
376 | bb.utils.mkdirhier(rpm_postinsts_dir) | 376 | bb.utils.mkdirhier(rpm_postinsts_dir) |
377 | 377 | ||
378 | # Save the package postinstalls in /etc/rpm-postinsts | 378 | # Save the package postinstalls in /etc/rpm-postinsts |
379 | for pkg in registered_pkgs: | 379 | for pkg in registered_pkgs.split(): |
380 | self.pm.save_rpmpostinist(pkg) | 380 | self.pm.save_rpmpostinist(pkg) |
381 | 381 | ||
382 | 382 | ||