diff options
Diffstat (limited to 'source3/lib/tdb/autogen.sh')
-rwxr-xr-x | source3/lib/tdb/autogen.sh | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/source3/lib/tdb/autogen.sh b/source3/lib/tdb/autogen.sh new file mode 100755 index 0000000000..1691689e10 --- /dev/null +++ b/source3/lib/tdb/autogen.sh @@ -0,0 +1,14 @@ +#!/bin/sh + +rm -rf autom4te.cache +rm -f configure config.h.in + +IPATHS="-I libreplace -I lib/replace -I ../libreplace -I ../replace -I ../lib/replace" +autoconf $IPATHS || exit 1 +autoheader $IPATHS || exit 1 + +rm -rf autom4te.cache + +echo "Now run ./configure and then make." +exit 0 + |