2 # find patterns of cache entries to automatically remove from config.cache
3 # Used by am-utils developers.
4 # Erez Zadok <ezk AT cs.columbia.edu>
9 # find the right directory
10 if [ ! -d $macdir ]; then
11 echo "Could not find $macdir directory."
15 # skip if no config.cache file
16 if [ ! -f config.cache
]; then
17 echo "Not in the A.cpu-company-system."
21 # look for files that changed vs. config.cache
23 for i
in ${macdir}/*.
m4; do
24 if test $i -nt config.cache
; then
25 n
=`egrep '^ac_cv_' $i |sed 's/[^a-zA-Z0-9_].*//g'|sort|uniq`
29 if test -z "$pat"; then