mirror of
https://git.openafs.org/openafs.git
synced 2025-01-31 13:38:01 +00:00
b69067a0fc
Move man page generation out into a separate script that's just invoked from regen.sh, so that someone can run that separate script later if they wish. Make that script more robust against problems such as empty podN directories. Diagnose a missing pod2man and warn about old versions of Pod::Man. Also, remove the old programs used to do the initial conversion from HTML. Enough post-conversion editing was done that they're no longer necessary except for historical curiosity, and for that purpose they can be pulled out of CVS. (cherry picked from commit 0b21e24d0a96401033d55d3c079c954138b7c50e)
20 lines
497 B
Bash
Executable File
20 lines
497 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.
|
|
echo "Building man pages"
|
|
if test -d doc/man-pages ; then
|
|
(cd doc/man-pages && ./generate-man)
|
|
fi
|