Gentoo Archives: gentoo-commits

From: "Fabian Groffen (grobian)" <grobian@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] portage r9509 - main/branches/prefix/pym/_emerge
Date: Tue, 25 Mar 2008 20:55:59
Message-Id: E1JeGBZ-0005lZ-26@stork.gentoo.org
1 Author: grobian
2 Date: 2008-03-25 20:55:55 +0000 (Tue, 25 Mar 2008)
3 New Revision: 9509
4
5 Modified:
6 main/branches/prefix/pym/_emerge/__init__.py
7 Log:
8 Nuke eselect compiler usage, since eselect compiler has been nuked from the tree a while ago. Should probably be merged with the trunk.
9
10 Modified: main/branches/prefix/pym/_emerge/__init__.py
11 ===================================================================
12 --- main/branches/prefix/pym/_emerge/__init__.py 2008-03-25 20:33:41 UTC (rev 9508)
13 +++ main/branches/prefix/pym/_emerge/__init__.py 2008-03-25 20:55:55 UTC (rev 9509)
14 @@ -318,12 +318,6 @@
15 "!!! other terminals also.\n"
16 )
17
18 - mystatus, myoutput = commands.getstatusoutput("eselect compiler show")
19 - if mystatus == os.EX_OK and len(myoutput.split("/")) == 2:
20 - part1, part2 = myoutput.split("/")
21 - if part1.startswith(chost + "-"):
22 - return myoutput.replace(chost + "-", gcc_ver_prefix, 1)
23 -
24 mystatus, myoutput = commands.getstatusoutput("gcc-config -c")
25 if mystatus == os.EX_OK and myoutput.startswith(chost + "-"):
26 return myoutput.replace(chost + "-", gcc_ver_prefix, 1)
27
28 --
29 gentoo-commits@l.g.o mailing list