From: Russ Allbery Date: Sun, 3 Sep 2006 20:59:55 +0000 (+0000) Subject: STABLE14-autom4te-cache-is-evil-20060903 X-Git-Tag: openafs-stable-1_4_2fc3~13 X-Git-Url: https://git.michaelhowe.org/gitweb/?a=commitdiff_plain;h=8dc16fd9320853dbdc6798199bfa6cb08ccc37d8;p=packages%2Fo%2Fopenafs.git STABLE14-autom4te-cache-is-evil-20060903 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. (cherry picked from commit 5a57fce90246e380fc530dc3c8ad097852b31712) --- diff --git a/regen.sh b/regen.sh index bc059256c..dc9f489b1 100755 --- 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. echo "Building man pages"