Small script to help the Subversion users, first version

MAINT_6_0
Stephane Bortzmeyer 17 years ago
parent 7b1e497d80
commit 36210540d0

@ -0,0 +1,24 @@
#!/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
pushd 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
Loading…
Cancel
Save