Gentoo Websites Logo
Go to: Gentoo Home Documentation Forums Lists Bugs Planet Store Wiki Get Gentoo!
View | Details | Raw Unified | Return to bug 6201 | Differences between
and this patch

Collapse All | Expand All

(-)emerge.org (-2 / +2 lines)
Lines 1645-1651 Link Here
1645
1645
1646
1646
1647
def post_emerge(retval=0):
1647
def post_emerge(retval=0):
1648
	auxpat=re.compile('\.info(-\d+)?(\.gz|\.bz2)?$')	
1648
	auxpat=re.compile('(-\d+)?\.info(-\d+)?(\.gz|\.bz2)?$')	
1649
	os.chdir("/")
1649
	os.chdir("/")
1650
	global myopts
1650
	global myopts
1651
	print
1651
	print
Lines 1708-1714 Link Here
1708
					if not aux:
1708
					if not aux:
1709
						continue
1709
						continue
1710
					auxgroups=aux.groups()	
1710
					auxgroups=aux.groups()	
1711
					if not (auxgroups[1] or auxgroups[2]):
1711
					if not (auxgroups[0] or auxgroups[1]):
1712
						myso=commands.getstatusoutput("/usr/bin/install-info --dir-file="+inforoot+"/dir "+inforoot+"/"+x)[1]
1712
						myso=commands.getstatusoutput("/usr/bin/install-info --dir-file="+inforoot+"/dir "+inforoot+"/"+x)[1]
1713
						if myso!="":
1713
						if myso!="":
1714
							badcount=badcount+1
1714
							badcount=badcount+1

Return to bug 6201