Gentoo Archives: gentoo-commits

From: "Zac Medico (zmedico)" <zmedico@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] portage r11649 - main/trunk/pym/_emerge
Date: Tue, 07 Oct 2008 09:03:49
Message-Id: E1Kn8Tr-0007Ja-1T@stork.gentoo.org
1 Author: zmedico
2 Date: 2008-10-07 09:03:45 +0000 (Tue, 07 Oct 2008)
3 New Revision: 11649
4
5 Modified:
6 main/trunk/pym/_emerge/__init__.py
7 Log:
8 When EbuildBuild encounters a failed fetch, propagee the log path so that
9 it can be properly displayed in the status display.
10
11
12 Modified: main/trunk/pym/_emerge/__init__.py
13 ===================================================================
14 --- main/trunk/pym/_emerge/__init__.py 2008-10-07 08:52:45 UTC (rev 11648)
15 +++ main/trunk/pym/_emerge/__init__.py 2008-10-07 09:03:45 UTC (rev 11649)
16 @@ -2471,6 +2471,8 @@
17 return
18
19 if self._default_exit(fetcher) != os.EX_OK:
20 + if fetcher.logfile is not None:
21 + self.settings["PORTAGE_LOG_FILE"] = fetcher.logfile
22 self.wait()
23 return