mirror of
https://github.com/samba-team/samba.git
synced 2025-10-30 08:23:49 +03:00
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.
26 lines
197 B
Bash
Executable File
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 ..
|