diff options
author | Richard Purdie <richard.purdie@linuxfoundation.org> | 2011-01-05 18:56:47 +0000 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2011-01-05 18:57:07 +0000 |
commit | 5e384038cbd5035377d61a1b77ad23ab69e0cac0 (patch) | |
tree | 32246eee39179fbcc1c4555e45c2020f3a05b3a6 /meta/classes/rootfs_rpm.bbclass | |
parent | 6ded4e0ae7f271512f580010c9ec10c4e4218f40 (diff) | |
download | poky-5e384038cbd5035377d61a1b77ad23ab69e0cac0.tar.gz |
rootfs_rpm.bbclass: Remove temporary work files in install directory, saving the manifests as logfiles into ${T}
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'meta/classes/rootfs_rpm.bbclass')
-rw-r--r-- | meta/classes/rootfs_rpm.bbclass | 7 |
1 files changed, 5 insertions, 2 deletions
diff --git a/meta/classes/rootfs_rpm.bbclass b/meta/classes/rootfs_rpm.bbclass index 33abe96df9..2f7d6916d9 100644 --- a/meta/classes/rootfs_rpm.bbclass +++ b/meta/classes/rootfs_rpm.bbclass | |||
@@ -202,8 +202,11 @@ EOF | |||
202 | # remove lock files | 202 | # remove lock files |
203 | rm -f ${IMAGE_ROOTFS}${rpmlibdir}/__db.* | 203 | rm -f ${IMAGE_ROOTFS}${rpmlibdir}/__db.* |
204 | 204 | ||
205 | # remove resolver files and manifests | 205 | # Move manifests into the directory with the logs |
206 | rm -f ${IMAGE_ROOTFS}/install/install.manifest | 206 | mv ${IMAGE_ROOTFS}/install/*.manifest ${T}/ |
207 | |||
208 | # Remove all remaining resolver files | ||
209 | rm -f ${IMAGE_ROOTFS}/install | ||
207 | 210 | ||
208 | log_check rootfs | 211 | log_check rootfs |
209 | 212 | ||