mirror of
https://github.com/samba-team/samba.git
synced 2025-01-15 23:24:37 +03:00
7f833458ca
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 0fa5d4bc225b83e9f63ac6d75bffc4c08eb6b620)
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 ..
|