Lines Matching refs:ignore
41 my @ignore = (
42 '^[^/\.].*', # ignore paths that don't begin with / or .
43 '^/dev/', # ignore devices
44 '^/etc/', # ignore config files
45 '^/proc/', # ignore /proc
46 '^/tmp/', # ignore temp files
47 '^/var/', # ignore more temp/volatile files
48 '^/usr/lib/locale/', # ignore locale support
49 '^/usr/share/lib/make/', # ignore make bits
50 '^/usr/share/lib/zoneinfo/', # ignore timezone info
51 '/SUNWspro/', # ignore compiler bits
52 '/sunstudio12.1/', # ignore more compiler bits
54 '^\.[/\.]{0,1}$' # ignore ., .., and ./
76 } elsif ((/^FILE:\s+(\S+)\s*$/) && (match($1, @ignore) == 0) &&