From 946225b683e230120e89d15169b1954bd0cfdac2 Mon Sep 17 00:00:00 2001 From: Simo Sorce Date: Tue, 17 Oct 2006 17:16:50 +0000 Subject: r19375: very basic helper script to build ldb standalone (This used to be commit b4c8bf7398cd8a9a2132dd4b04a0ea8004e7f1b0) --- source4/lib/ldb/standalone.sh | 21 +++++++++++++++++++++ 1 file changed, 21 insertions(+) create mode 100755 source4/lib/ldb/standalone.sh (limited to 'source4/lib') diff --git a/source4/lib/ldb/standalone.sh b/source4/lib/ldb/standalone.sh new file mode 100755 index 0000000000..4a085688c2 --- /dev/null +++ b/source4/lib/ldb/standalone.sh @@ -0,0 +1,21 @@ +#!/bin/sh + +cd ../replace +make clean + +cd ../talloc +make clean + +cd ../tdb +make clean + +cd ../ldb +make clean + +./autogen.sh + +mkdir build +cd build + +../configure +make -- cgit