aboutsummaryrefslogtreecommitdiffstats
path: root/classes/rootfs_ipk.oeclass
diff options
context:
space:
mode:
authorPhil Blundell <philb@gnu.org>2004-07-31 23:56:01 +0000
committerPhil Blundell <philb@gnu.org>2004-07-31 23:56:01 +0000
commit8b301e2a47752c9b2f2a28ea703211ffa1f8638a (patch)
tree5363af1abd4308de77967edc5504fb11d76bbf1e /classes/rootfs_ipk.oeclass
parent6b59712d9127518a989c0b192a5f7c47e4289c29 (diff)
downloadopenembedded-8b301e2a47752c9b2f2a28ea703211ffa1f8638a.tar.gz
move "rm -rf ${IMAGE_ROOTFS}" to less damaging place
BKrev: 410c3191lYtPcTGDsw-2Cf0DkzLXNw
Diffstat (limited to 'classes/rootfs_ipk.oeclass')
-rw-r--r--classes/rootfs_ipk.oeclass2
1 files changed, 1 insertions, 1 deletions
diff --git a/classes/rootfs_ipk.oeclass b/classes/rootfs_ipk.oeclass
index 723712ab86..e92d189730 100644
--- a/classes/rootfs_ipk.oeclass
+++ b/classes/rootfs_ipk.oeclass
@@ -24,7 +24,6 @@ IPKG_INSTALL =+ "${@" ".join(map(lambda s: "locale-base-%s" % s, oe.data.getVar(
real_do_rootfs () {
set -x
- rm -rf ${IMAGE_ROOTFS}
mkdir -p ${IMAGE_ROOTFS}/dev
@@ -71,6 +70,7 @@ EOF
}
fakeroot do_rootfs () {
+ rm -rf ${IMAGE_ROOTFS}
real_do_rootfs
}