1
0
mirror of https://github.com/samba-team/samba.git synced 2025-10-30 08:23:49 +03:00
Files
samba-mirror/source/lib/ldb/standalone.sh
Simo Sorce 0fa5d4bc22 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.
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 ..