summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorZac Medico <zmedico@gentoo.org>2006-10-27 06:32:28 +0000
committerZac Medico <zmedico@gentoo.org>2006-10-27 06:32:28 +0000
commitd94090332c75330307dff9269c7c9f753b31ab86 (patch)
tree0d5d234754fa18af3cec9dbb1ca86e5538e962e1 /bin/ebuild
parentshow licenses or pointer to license files on 'masked by' message (diff)
downloadportage-multirepo-d94090332c75330307dff9269c7c9f753b31ab86.tar.gz
portage-multirepo-d94090332c75330307dff9269c7c9f753b31ab86.tar.bz2
portage-multirepo-d94090332c75330307dff9269c7c9f753b31ab86.zip
Do not pass the "clean" parameter to doebuild since it causes ${T} to be cleaned up when it shouldn't be. Thanks to Mr_Bones_ for reporting.
svn path=/main/trunk/; revision=4848
Diffstat (limited to 'bin/ebuild')
-rwxr-xr-xbin/ebuild3
1 files changed, 2 insertions, 1 deletions
diff --git a/bin/ebuild b/bin/ebuild
index 0160fa03..2d8c0890 100755
--- a/bin/ebuild
+++ b/bin/ebuild
@@ -106,7 +106,8 @@ for arg in pargs:
tmpsettings = portage.config(clone=portage.settings)
if arg == "digest" and force:
discard_digests(ebuild, tmpsettings, portage.portdb)
- a = portage.doebuild(ebuild, arg, portage.root, tmpsettings, debug=debug, cleanup=("noauto" not in portage.features), tree=mytree)
+ a = portage.doebuild(ebuild, arg, portage.root, tmpsettings,
+ debug=debug, tree=mytree)
except KeyboardInterrupt:
print "Interrupted."
a = 1