summaryrefslogtreecommitdiffstats
path: root/ldb/standalone.sh
diff options
context:
space:
mode:
Diffstat (limited to 'ldb/standalone.sh')
-rwxr-xr-xldb/standalone.sh28
1 files changed, 0 insertions, 28 deletions
diff --git a/ldb/standalone.sh b/ldb/standalone.sh
deleted file mode 100755
index 8ab081e0f..000000000
--- a/ldb/standalone.sh
+++ /dev/null
@@ -1,28 +0,0 @@
-#!/bin/sh
-
-cd ../replace
-make clean
-
-cd ../talloc
-make clean
-
-cd ../tdb
-make clean
-
-cd ../events
-make clean
-
-cd ../ldb
-make clean
-
-./autogen.sh
-
-rm -fr build
-mkdir build
-cd build
-
-../configure $*
-make dirs
-make all
-
-cd ..