openafs/regen.sh
Jim Rees 9352092dfd regen-no-doc-noise-20060125
Don't say we're building man pages if we're not.
2006-01-25 19:44:15 +00:00

20 lines
501 B
Bash
Executable File

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
# Rebuild the man pages, to not require those building from source to have
# pod2man available.
if test -d doc/man-pages ; then
echo "Building man pages"
(cd doc/man-pages && ./generate-man)
fi