openrc/test/setup_env.sh
Mike Frysinger 1e73fd4b1e tests: setup env before reading local files
The local files we source might use local binaries (like eval_ecolors),
so setup the env first.

Signed-off-by: Mike Frysinger <vapier@gentoo.org>
2011-01-17 04:07:24 -05:00

24 lines
518 B
Bash
Executable File

#!/bin/sh
if [ -z "${top_srcdir}" ] ; then
echo "You must set top_srcdir before sourcing this file" 1>&2
exit 1
fi
srcdir=${srcdir:-.}
top_builddir=${top_builddir:-${top_srcdir}}
builddir=${builddir:-${srcdir}}
export LD_LIBRARY_PATH=${top_builddir}/src/libeinfo:${top_builddir}/src/librc:${LD_LIBRARY_PATH}
export PATH=${top_builddir}/src/rc:${PATH}
if ! . ${top_srcdir}/sh/functions.sh; then
echo "Sourcing functions.sh failed !?" 1>&2
exit 1
fi
cd ${top_srcdir}/src/rc
${MAKE:-make} links >/dev/null
cd -