mirror of
https://github.com/samba-team/samba.git
synced 2025-02-14 01:57:53 +03:00
Adds a Makefile, configure script, and tdb2.pc.in. Signed-off-by: Amitay Isaacs <amitay@gmail.com> Signed-off-by: Rusty Russell <rusty@rustcorp.com.au>
22 lines
424 B
Bash
Executable File
22 lines
424 B
Bash
Executable File
#!/bin/sh
|
|
|
|
PREVPATH=`dirname $0`
|
|
|
|
if [ -f $PREVPATH/../../buildtools/bin/waf ]; then
|
|
WAF=../../buildtools/bin/waf
|
|
elif [ -f $PREVPATH/buildtools/bin/waf ]; then
|
|
WAF=./buildtools/bin/waf
|
|
else
|
|
echo "replace: Unable to find waf"
|
|
exit 1
|
|
fi
|
|
|
|
# using JOBS=1 gives maximum compatibility with
|
|
# systems like AIX which have broken threading in python
|
|
JOBS=1
|
|
export JOBS
|
|
|
|
cd . || exit 1
|
|
$WAF configure "$@" || exit 1
|
|
cd $PREVPATH
|