summaryrefslogtreecommitdiffstats
path: root/pym/_emerge/AbstractEbuildProcess.py
diff options
context:
space:
mode:
Diffstat (limited to 'pym/_emerge/AbstractEbuildProcess.py')
-rw-r--r--pym/_emerge/AbstractEbuildProcess.py14
1 files changed, 0 insertions, 14 deletions
diff --git a/pym/_emerge/AbstractEbuildProcess.py b/pym/_emerge/AbstractEbuildProcess.py
index a74a39437..ed20b14f9 100644
--- a/pym/_emerge/AbstractEbuildProcess.py
+++ b/pym/_emerge/AbstractEbuildProcess.py
@@ -59,20 +59,6 @@ class AbstractEbuildProcess(SpawnProcess):
self.wait()
return
- if need_builddir:
- phase_completed_file = os.path.join(
- self.settings['PORTAGE_BUILDDIR'],
- ".%sed" % self.phase.rstrip('e'))
- if not os.path.exists(phase_completed_file):
- # If the phase is really going to run then we want
- # to eliminate any stale elog messages that may
- # exist from a previous run.
- try:
- os.unlink(os.path.join(self.settings['T'],
- 'logging', self.phase))
- except OSError:
- pass
-
if self.background:
# Automatically prevent color codes from showing up in logs,
# since we're not displaying to a terminal anyway.