f73b3741f0
Apply result of "git diff anaconda-18.37.11-1..anaconda-20.25.16-1" and resolve conflicts.
19 lines
468 B
Bash
19 lines
468 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}/pyanaconda/isys/.libs:${top_srcdir}/pyanaconda:${top_srcdir}"
|
|
else
|
|
PYTHONPATH="${PYTHONPATH}:${top_builddir}/pyanaconda/isys/.libs:${top_srcdir}/pyanaconda:${top_srcdir}"
|
|
fi
|
|
export PYTHONPATH
|
|
export top_srcdir
|
|
export top_builddir
|