diff options
author | Simo Sorce <idra@samba.org> | 2006-10-17 17:16:50 +0000 |
---|---|---|
committer | Gerald (Jerry) Carter <jerry@samba.org> | 2007-10-10 14:21:19 -0500 |
commit | 946225b683e230120e89d15169b1954bd0cfdac2 (patch) | |
tree | c2d3a8ad1edd4b3adfe737e8139b6fadc691a19d /source4/lib | |
parent | 8acb0575c716c8ca680835764cd3bc5483f3707c (diff) | |
download | samba-946225b683e230120e89d15169b1954bd0cfdac2.tar.gz samba-946225b683e230120e89d15169b1954bd0cfdac2.tar.bz2 samba-946225b683e230120e89d15169b1954bd0cfdac2.zip |
r19375: very basic helper script to build ldb standalone
(This used to be commit b4c8bf7398cd8a9a2132dd4b04a0ea8004e7f1b0)
Diffstat (limited to 'source4/lib')
-rwxr-xr-x | source4/lib/ldb/standalone.sh | 21 |
1 files changed, 21 insertions, 0 deletions
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 |