mirror of
https://github.com/samba-team/samba.git
synced 2025-02-03 13:47:25 +03:00
8e82a76105
Fix warning with standalone.sh if build exists (This used to be commit d74fac574067ff2f3918ad435df2c2352e4b2ef7)
23 lines
177 B
Bash
Executable File
23 lines
177 B
Bash
Executable File
#!/bin/sh
|
|
|
|
cd ../replace
|
|
make clean
|
|
|
|
cd ../talloc
|
|
make clean
|
|
|
|
cd ../tdb
|
|
make clean
|
|
|
|
cd ../ldb
|
|
make clean
|
|
|
|
./autogen.sh
|
|
|
|
mkdir -p build
|
|
cd build
|
|
|
|
../configure
|
|
make dirs
|
|
make all
|