1
0
mirror of https://github.com/samba-team/samba.git synced 2025-01-12 09:18:10 +03:00
samba-mirror/source3/lib/ldb/standalone.sh
Stefan Metzmacher 866a3b6e40 r19725: sync samba3's ldb with samba4
metze
(This used to be commit 207643e9c9)
2007-10-10 12:15:50 -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 ..