autom4te-cache-is-evil-20060903
authorRuss Allbery <rra@stanford.edu>
Sun, 3 Sep 2006 20:47:00 +0000 (20:47 +0000)
committerRuss Allbery <rra@stanford.edu>
Sun, 3 Sep 2006 20:47:00 +0000 (20:47 +0000)
Purge autom4te.cache after running autoconf so that we don't ship its huge
trace files in source releases.  Add #!/bin/sh to the beginning of regen.sh
just because.

regen.sh

index 75c51ff..f5150fe 100755 (executable)
--- a/regen.sh
+++ b/regen.sh
@@ -1,3 +1,4 @@
+#!/bin/sh
 echo "Updating configuration..."
 echo "Running aclocal"
 aclocal -I src/cf
@@ -11,6 +12,9 @@ autoheader
 #echo "Running automake"
 #automake
 
+echo "Deleting autom4te.cache directory"
+rm -r autom4te.cache
+
 # Rebuild the man pages, to not require those building from source to have
 # pod2man available.
 if test -d doc/man-pages ; then