If PATH is redirected to use the newest build/.../root binaries available, LD_LIBRARY_PATH should be redirected as well. git-svn-id: http://www.rocklinux.org/svn/rock-linux/trunk@1494 c5f82cb5-29bc-0310-9cd0-bff59a50e3bc
@ -2,6 +2,7 @@
*) 2003-09-26 (2.0.0-rc1 - 2.0.0-rc2)
- Dimitar Zhekov: bash use installed readline option
fixed reroot in makeimages.sh
*) 2003-09-24 (2.0.0-rc1 - 2.0.0-rc2)
@ -4,6 +4,10 @@ if [ "$1" = -reroot ] ; then
echo "Old PATH: $PATH"
PATH="../root/sbin:../root/bin:../root/usr/sbin:../usr/bin:$PATH"
echo "New PATH: $PATH"
echo "Old LD_LIBRARY_PATH: $LD_LIBRARY_PATH"
export LD_LIBRARY_PATH="../root/lib:../root/usr/lib:$LD_LIBRARY_PATH"
LD_LIBRARY_PATH=${LD_LIBRARY_PATH%:}
echo "New LD_LIBRARY_PATH: $LD_LIBRARY_PATH"
shift
fi