mirror of
https://git.openafs.org/openafs.git
synced 2025-01-18 06:50:12 +00:00
9352092dfd
Don't say we're building man pages if we're not.
20 lines
501 B
Bash
Executable File
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
|