1
0
mirror of https://github.com/samba-team/samba.git synced 2024-12-28 07:21:54 +03:00
samba-mirror/source4/lib/ldb/standalone.sh
Simo Sorce 7f833458ca r19489: Change ldb_msg_add_value and ldb_msg_add_empty to take a foruth argument.
This is a pointer to an element pointer. If it is not null it will be
filled with the pointer of the manipulated element.
Will avoid double searches on the elements list in some cases.
(This used to be commit 0fa5d4bc22)
2007-10-10 14:24:38 -05:00

26 lines
197 B
Bash
Executable File

#!/bin/sh
cd ../replace
make clean
cd ../talloc
make clean
cd ../tdb
make clean
cd ../ldb
make clean
./autogen.sh
rm -fr build
mkdir build
cd build
../configure $*
make dirs
make all
cd ..