diff options
author | Zac Medico <zmedico@gentoo.org> | 2009-03-22 23:47:49 +0000 |
---|---|---|
committer | Zac Medico <zmedico@gentoo.org> | 2009-03-22 23:47:49 +0000 |
commit | 5c00d931c364f28c41824df5502771a3d774c865 (patch) | |
tree | 3ed2a63333b216ae9ba9f16f9bf1247c65a53c91 | |
parent | 174ba0588a86ef04e470a5e5c10cd948f4610082 (diff) | |
download | portage-5c00d931c364f28c41824df5502771a3d774c865.tar.gz portage-5c00d931c364f28c41824df5502771a3d774c865.tar.bz2 portage-5c00d931c364f28c41824df5502771a3d774c865.zip |
When triggering a fresh unpack inside dyn_unpack(), remove the
.prepared, .configured and .installed files along with the others.
svn path=/main/trunk/; revision=13146
-rwxr-xr-x | bin/ebuild.sh | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/bin/ebuild.sh b/bin/ebuild.sh index 1c448c82f..d426e15a9 100755 --- a/bin/ebuild.sh +++ b/bin/ebuild.sh @@ -666,7 +666,7 @@ dyn_unpack() { fi if [ "${newstuff}" == "yes" ]; then # We don't necessarily have privileges to do a full dyn_clean here. - rm -rf "${PORTAGE_BUILDDIR}"/{.unpacked,.compiled,.tested,.packaged,build-info} + rm -rf "${PORTAGE_BUILDDIR}"/{.unpacked,.prepared,.configured,.compiled,.tested,.installed,.packaged,build-info} rm -rf "${WORKDIR}" if [ -d "${T}" ] && \ ! hasq keeptemp $FEATURES && ! hasq keepwork $FEATURES ; then |