[Popcon-commits] cvs commit to popularity-contest by ballombe
popcon-commits@lists.alioth.debian.org
popcon-commits@lists.alioth.debian.org
Wed, 26 May 2004 07:59:15 -0600
Update of /cvsroot/popcon/popularity-contest
In directory haydn:/tmp/cvs-serv31484
Modified Files:
popularity-contest
Log Message:
Change regexp used to find files with relevant atime to handle perl and
python libraries.
Index: popularity-contest
===================================================================
RCS file: /cvsroot/popcon/popularity-contest/popularity-contest,v
retrieving revision 1.9
retrieving revision 1.10
diff -u -d -r1.9 -r1.10
--- popularity-contest 14 May 2004 10:47:17 -0000 1.9
+++ popularity-contest 26 May 2004 13:59:13 -0000 1.10
@@ -83,7 +83,7 @@
while (<FILES>)
{
chop;
- m{/bin/|/sbin/|^/usr/games/|\.[ah]$} or next;
+ m{/bin/|/sbin/|^/usr/games/|\.[ah]$|\.pm$|\.pyc$} or next;
-f $_ or next;
my($dev,$ino,$mode,$nlink,$uid,$gid,$rdev,$size,
$atime,$mtime,$ctime,$blksize,$blocks)