blob: a6367e7314173efbc35d20381b796c521de5a2f4 (
plain)
1
2
3
4
5
6
7
8
9
10
11
|
#!/bin/sh
WAF=BUILDTOOLS/bin/waf
# using JOBS=1 gives maximum compatibility with
# systems like AIX which have broken threading in python
JOBS=1
export JOBS
$WAF configure $*
|