From: Zac Medico Date: Tue, 2 Mar 2010 22:27:16 +0000 (-0000) Subject: Unlink log instead of truncate, to avoid leaving empty log in X-Git-Tag: v2.2_rc64~2 X-Git-Url: http://git.tremily.us/?a=commitdiff_plain;h=52bfdfbaf1c9f0765bf57857f7cf69c0d2bf86a5;p=portage.git 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 --- diff --git a/pym/_emerge/EbuildBuildDir.py b/pym/_emerge/EbuildBuildDir.py index 99c48dfb6..4ca0c4b1f 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