You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
echoping/SRC/recreate-autofiles

26 lines
406 B
Bash

#!/bin/sh
# For developers only: use it only if you know about autotools.
set -e
# Does *not* work with automake 1.4!
aclocal
autoheader
libtoolize --force
automake --add-missing
autoconf
cd plugins
aclocal
automake --foreign --add-missing
autoconf
for dir in dns random whois ldap postgresql; do
cd $dir
aclocal
autoheader
automake --foreign --add-missing
autoconf
cd ..
done
cd ..