From: Alec Warner Date: Mon, 3 Apr 2006 15:08:07 +0000 (-0000) Subject: It was pointed out that we have a Test-Manifest perl package, which would get sadly... X-Git-Tag: v2.1_pre8~32 X-Git-Url: http://git.tremily.us/?a=commitdiff_plain;h=7f8fee1da83095cbd00402dc06d7d6bc0e12219f;p=portage.git It was pointed out that we have a Test-Manifest perl package, which would get sadly excluded using the old string match, so we fix it to match less ;) svn path=/main/trunk/; revision=3068 --- diff --git a/bin/repoman b/bin/repoman index 8a40e60e0..7068ccdd9 100755 --- a/bin/repoman +++ b/bin/repoman @@ -1511,7 +1511,7 @@ else: if isCvs: mycvstree=cvstree.getentries("./",recursive=1) mychanged=cvstree.findchanged(mycvstree,recursive=1,basedir="./") - for manifest in [file for file in mychanged if 'Manifest' in file]: + for manifest in [file for file in mychanged if '/Manifest' in file]: mychanged.remove(manifest) mynew=cvstree.findnew(mycvstree,recursive=1,basedir="./") myremoved=cvstree.findremoved(mycvstree,recursive=1,basedir="./")