20 lines
417 B
Bash
20 lines
417 B
Bash
|
#!/bin/sh
|
||
|
|
||
|
if [ -z "$top_srcdir" ]; then
|
||
|
echo "*** top_srcdir must be set"
|
||
|
exit 1
|
||
|
fi
|
||
|
|
||
|
# If no top_builddir is set, use top_srcdir
|
||
|
: "${top_builddir:=$top_srcdir}"
|
||
|
|
||
|
if [ -z "$PYTHONPATH" ]; then
|
||
|
PYTHONPATH="${top_builddir}/src/:${top_srcdir}/tests/lib"
|
||
|
else
|
||
|
PYTHONPATH="${PYTHONPATH}:${top_srcdir}/src/:${top_srcdir}:${top_srcdir}/tests/lib"
|
||
|
fi
|
||
|
|
||
|
export PYTHONPATH
|
||
|
export top_srcdir
|
||
|
export top_builddir
|