summaryrefslogtreecommitdiff
path: root/test/setup_env.sh
blob: 6af865b288386b2e719233c85c2f9758787a35c8 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
#!/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}

cd ${top_srcdir}/src/rc
${MAKE:-make} links >/dev/null
cd -

. ${top_srcdir}/sh/functions.sh

if [ $? -ne 0 ] ; then
	echo "Sourcing functions.sh failed !?" 1>&2
	exit 1
fi