From 38fdde5d9bf15b10caa60ee216d278ba8d870c2e Mon Sep 17 00:00:00 2001 From: Jelmer Vernooij Date: Mon, 4 Sep 2006 12:21:42 +0000 Subject: r18031: Merge my replace fixes: * libreplace can now build stand-alone * add stub testsuite for libreplace * make talloc/tdb/ldb use libreplace (This used to be commit fe7ca4b1454e01a33ed0d53791ebffdd349298b4) --- source4/lib/replace/autogen.sh | 10 ++++++++++ 1 file changed, 10 insertions(+) create mode 100755 source4/lib/replace/autogen.sh (limited to 'source4/lib/replace/autogen.sh') diff --git a/source4/lib/replace/autogen.sh b/source4/lib/replace/autogen.sh new file mode 100755 index 0000000000..5b4c37cf96 --- /dev/null +++ b/source4/lib/replace/autogen.sh @@ -0,0 +1,10 @@ +#!/bin/sh + +rm -rf autom4te.cache + +autoheader || exit 1 +autoconf || exit 1 + +echo "Now run ./configure and then make." +exit 0 + -- cgit From 72c697167e6abd5a09f480ffd7735a306241a1f7 Mon Sep 17 00:00:00 2001 From: Stefan Metzmacher Date: Tue, 5 Sep 2006 13:41:26 +0000 Subject: r18088: sometimes autoconf picks up some old stuff: - remove configure and config.h.in - cleanup after autoconf and autoheader are done metze (This used to be commit c4f91114a3cc741538b358e3e44dc8eb0d13188a) --- source4/lib/replace/autogen.sh | 3 +++ 1 file changed, 3 insertions(+) (limited to 'source4/lib/replace/autogen.sh') diff --git a/source4/lib/replace/autogen.sh b/source4/lib/replace/autogen.sh index 5b4c37cf96..d46a4279f3 100755 --- a/source4/lib/replace/autogen.sh +++ b/source4/lib/replace/autogen.sh @@ -1,10 +1,13 @@ #!/bin/sh rm -rf autom4te.cache +rm -f configure config.h.in autoheader || exit 1 autoconf || exit 1 +rm -rf autom4te.cache + echo "Now run ./configure and then make." exit 0 -- cgit