2006-09-03 21:59:55 +01:00
|
|
|
#!/bin/sh
|
2001-06-28 07:44:19 +01:00
|
|
|
echo "Updating configuration..."
|
2001-06-05 22:17:46 +01:00
|
|
|
echo "Running aclocal"
|
2001-06-28 07:44:19 +01:00
|
|
|
aclocal -I src/cf
|
2001-06-05 22:17:46 +01:00
|
|
|
echo "Running autoconf"
|
|
|
|
autoconf
|
2001-08-29 21:17:19 +01:00
|
|
|
echo "Running autoconf for configure-libafs"
|
|
|
|
autoconf configure-libafs.in > configure-libafs
|
|
|
|
chmod +x configure-libafs
|
2001-06-05 22:17:46 +01:00
|
|
|
echo "Running autoheader"
|
|
|
|
autoheader
|
2001-06-28 07:44:19 +01:00
|
|
|
#echo "Running automake"
|
|
|
|
#automake
|
2006-01-05 18:28:16 +00:00
|
|
|
|
2006-09-03 21:59:55 +01:00
|
|
|
echo "Deleting autom4te.cache directory"
|
|
|
|
rm -r autom4te.cache
|
|
|
|
|
2006-01-05 18:28:16 +00:00
|
|
|
# Rebuild the man pages, to not require those building from source to have
|
|
|
|
# pod2man available.
|
|
|
|
echo "Building man pages"
|
2006-01-05 18:53:20 +00:00
|
|
|
if test -d doc/man-pages ; then
|
|
|
|
(cd doc/man-pages && ./generate-man)
|
2006-01-05 18:28:16 +00:00
|
|
|
fi
|