2008-03-24 07:17:05 +00:00
|
|
|
#!/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}}
|
|
|
|
|
2011-01-18 01:49:22 +00:00
|
|
|
if [ ! -f ${top_srcdir}/sh/functions.sh ] ; then
|
|
|
|
echo "functions.sh not yet created !?" 1>&2
|
|
|
|
exit 1
|
|
|
|
elif ! . ${top_srcdir}/sh/functions.sh; then
|
2008-07-03 13:09:24 +00:00
|
|
|
echo "Sourcing functions.sh failed !?" 1>&2
|
|
|
|
exit 1
|
|
|
|
fi
|
|
|
|
|
2012-11-07 00:22:33 +00:00
|
|
|
LD_LIBRARY_PATH=${top_builddir}/src/libeinfo:${top_builddir}/src/librc:${LD_LIBRARY_PATH}
|
|
|
|
PATH=${top_builddir}/src/rc:${PATH}
|
|
|
|
export LD_LIBRARY_PATH PATH
|
2012-10-17 18:13:47 -05:00
|
|
|
|
2008-04-07 09:37:14 +00:00
|
|
|
cd ${top_srcdir}/src/rc
|
|
|
|
${MAKE:-make} links >/dev/null
|
|
|
|
cd -
|
2008-03-24 07:17:05 +00:00
|
|
|
|