diff options
-rw-r--r-- | src/util/ChangeLog | 5 | ||||
-rw-r--r-- | src/util/reconf | 1 |
2 files changed, 6 insertions, 0 deletions
diff --git a/src/util/ChangeLog b/src/util/ChangeLog index 84cafbec9e..5639956fa1 100644 --- a/src/util/ChangeLog +++ b/src/util/ChangeLog @@ -1,3 +1,8 @@ +2004-03-05 Ken Raeburn <raeburn@mit.edu> + + * reconf: Delete autom4te.cache directories after running + autoreconf. + 2004-02-26 Ken Raeburn <raeburn@mit.edu> * Makefile.in (MY_SUBDIRS): Drop apputils. diff --git a/src/util/reconf b/src/util/reconf index 6a5038145f..7b56054a72 100644 --- a/src/util/reconf +++ b/src/util/reconf @@ -98,3 +98,4 @@ if test $? = 0 ; then cp /dev/null include/krb5/autoconf.stmp fi fi +find . -name autom4te.cache -print | xargs rm -rf |