--- emerge.org 2003-11-10 20:34:30.000000000 +0000 +++ emerge 2003-11-11 02:41:09.000000000 +0000 @@ -1645,7 +1645,7 @@ def post_emerge(retval=0): - auxpat=re.compile('\.info(-\d+)?(\.gz|\.bz2)?$') + auxpat=re.compile('(-\d+)?\.info(-\d+)?(\.gz|\.bz2)?$') os.chdir("/") global myopts print @@ -1708,7 +1708,7 @@ if not aux: continue auxgroups=aux.groups() - if not (auxgroups[1] or auxgroups[2]): + if not (auxgroups[0] or auxgroups[1]): myso=commands.getstatusoutput("/usr/bin/install-info --dir-file="+inforoot+"/dir "+inforoot+"/"+x)[1] if myso!="": badcount=badcount+1