From 52bfdfbaf1c9f0765bf57857f7cf69c0d2bf86a5 Mon Sep 17 00:00:00 2001 From: Zac Medico Date: Tue, 2 Mar 2010 22:27:16 +0000 Subject: 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 --- pym/_emerge/EbuildBuildDir.py | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) (limited to 'pym/_emerge/EbuildBuildDir.py') 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 -- cgit v1.2.3-1-g7c22