File: configure

package info (click to toggle)
samba 2%3A4.23.3%2Bdfsg-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 188,088 kB
  • sloc: ansic: 2,007,520; python: 272,673; sh: 72,258; xml: 51,653; perl: 36,094; makefile: 6,353; yacc: 5,323; exp: 1,582; lex: 1,504; cpp: 1,224; awk: 589; java: 119; csh: 58; pascal: 54; sed: 45; asm: 30
file content (28 lines) | stat: -rwxr-xr-x 573 bytes parent folder | download | duplicates (23)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
#!/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

# Make sure we don't have any library preloaded.
unset LD_PRELOAD

# Make sure we get stable hashes
PYTHONHASHSEED=1
export PYTHONHASHSEED

cd . || exit 1
$PYTHON $WAF configure "$@" || exit 1
cd $PREVPATH