mirror of
https://github.com/samba-team/samba.git
synced 2024-12-23 17:34:34 +03:00
644e53d615
Signed-off-by: Andreas Schneider <asn@samba.org> Reviewed-by: Volker Lendecke <vl@samba.org> Autobuild-User(master): Andreas Schneider <asn@cryptomilk.org> Autobuild-Date(master): Thu Oct 9 19:32:16 CEST 2014 on sn-devel-104
18 lines
328 B
Bash
Executable File
18 lines
328 B
Bash
Executable File
#!/bin/sh
|
|
|
|
PREVPATH=`dirname $0`
|
|
|
|
WAF=./buildtools/bin/waf
|
|
|
|
# using JOBS=1 gives maximum compatibility with
|
|
# systems like AIX which have broken threading in python
|
|
JOBS=1
|
|
export JOBS
|
|
|
|
# Make sure we don't have any library preloaded.
|
|
unset LD_PRELOAD
|
|
|
|
cd . || exit 1
|
|
${PYTHON:=python} $WAF configure "$@" || exit 1
|
|
cd $PREVPATH
|