openafs/regen.sh
Marcus Watts 22d9bf51a1 RXK5DEVEL15-rxk5-20070123
again, massaged by me, shadow@dementia.org
2007-01-23 01:01:51 +00:00

24 lines
587 B
Bash
Executable File

#!/bin/sh
echo "Updating configuration..."
echo "Running aclocal"
aclocal -I src/cf
echo "Running autoconf"
autoconf
echo "Running autoconf for configure-libafs"
autoconf configure-libafs.in > configure-libafs
chmod +x configure-libafs
echo "Running autoheader"
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 -e doc/man-pages/generate-man ; then
echo "Building man pages"
(cd doc/man-pages && ./generate-man)
fi