From 36210540d088cb68c97fba906f099e950b3cb73a Mon Sep 17 00:00:00 2001 From: Stephane Bortzmeyer Date: Mon, 12 Mar 2007 11:22:24 +0000 Subject: [PATCH] Small script to help the Subversion users, first version --- SRC/recreate-autofiles | 24 ++++++++++++++++++++++++ 1 file changed, 24 insertions(+) create mode 100755 SRC/recreate-autofiles diff --git a/SRC/recreate-autofiles b/SRC/recreate-autofiles new file mode 100755 index 0000000..37b1461 --- /dev/null +++ b/SRC/recreate-autofiles @@ -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 \ No newline at end of file