summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorZac Medico <zmedico@gentoo.org>2010-03-02 22:27:16 +0000
committerZac Medico <zmedico@gentoo.org>2010-03-02 22:27:16 +0000
commit52bfdfbaf1c9f0765bf57857f7cf69c0d2bf86a5 (patch)
treedb00c73ab527578e57cb01bcbb36120936d54615
parentRemove fetch log after successful fetch. (diff)
downloadportage-multirepo-52bfdfbaf1c9f0765bf57857f7cf69c0d2bf86a5.tar.gz
portage-multirepo-52bfdfbaf1c9f0765bf57857f7cf69c0d2bf86a5.tar.bz2
portage-multirepo-52bfdfbaf1c9f0765bf57857f7cf69c0d2bf86a5.zip
Unlink log instead of truncate, to avoid leaving empty log in
$PORT_LOGDIR. This reverts bug 304981 (reporting doesn't use tee like this anymore so he'd prefer the old behavior). svn path=/main/trunk/; revision=15722
-rw-r--r--pym/_emerge/EbuildBuildDir.py3
1 files changed, 1 insertions, 2 deletions
diff --git a/pym/_emerge/EbuildBuildDir.py b/pym/_emerge/EbuildBuildDir.py
index 99c48dfb..4ca0c4b1 100644
--- a/pym/_emerge/EbuildBuildDir.py
+++ b/pym/_emerge/EbuildBuildDir.py
@@ -65,9 +65,8 @@ class EbuildBuildDir(SlotObject):
settings = self.settings
log_file = settings.get('PORTAGE_LOG_FILE')
if log_file is not None and os.path.isfile(log_file):
- # Truncate rather than unlink, so tail -f still works.
try:
- open(log_file, 'wb')
+ os.unlink(log_file)
except OSError:
pass