openrc/test/setup_env.sh

24 lines
518 B
Bash
Raw Normal View History

2008-03-24 12:47:05 +05:30
#!/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}}
2008-07-03 18:39:24 +05:30
if ! . ${top_srcdir}/sh/functions.sh; then
echo "Sourcing functions.sh failed !?" 1>&2
exit 1
fi
2008-03-24 12:47:05 +05:30
export LD_LIBRARY_PATH=${top_builddir}/src/libeinfo:${top_builddir}/src/librc:${LD_LIBRARY_PATH}
export PATH=${top_builddir}/src/rc:${PATH}
2008-04-07 15:07:14 +05:30
cd ${top_srcdir}/src/rc
${MAKE:-make} links >/dev/null
cd -
2008-03-24 12:47:05 +05:30