source:
trunk/server/buildtools/scripts/configure.waf
Last change on this file was 745, checked in by , 13 years ago | |
---|---|
File size: 263 bytes |
Rev | Line | |
---|---|---|
[740] | 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 | cd BUILDPATH || exit 1 | |
13 | $WAF configure "$@" || exit 1 | |
14 | cd $PREVPATH |
Note:
See TracBrowser
for help on using the repository browser.