Last change
on this file was 988, checked in by Silvan Scherrer, 9 years ago |
Samba Server: update vendor to version 4.4.3
|
File size:
328 bytes
|
Line | |
---|
1 | #!/bin/sh
|
---|
2 |
|
---|
3 | PREVPATH=`dirname $0`
|
---|
4 |
|
---|
5 | WAF=./buildtools/bin/waf
|
---|
6 |
|
---|
7 | # using JOBS=1 gives maximum compatibility with
|
---|
8 | # systems like AIX which have broken threading in python
|
---|
9 | JOBS=1
|
---|
10 | export JOBS
|
---|
11 |
|
---|
12 | # Make sure we don't have any library preloaded.
|
---|
13 | unset LD_PRELOAD
|
---|
14 |
|
---|
15 | cd . || exit 1
|
---|
16 | ${PYTHON:=python} $WAF configure "$@" || exit 1
|
---|
17 | cd $PREVPATH
|
---|
Note:
See
TracBrowser
for help on using the repository browser.