From: Jan-Benedict G. <jb...@us...> - 2005-05-11 19:29:42
|
Update of /cvsroot/linux-vax/toolchain/scripts In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv1740 Modified Files: build_toolchain.sh Log Message: - Put newly created binutils in front of the path, not behind it. We actually want to use the bleeding edge tools, not some old tools that may be around in our path... - Force bash to kill it's command hash. Index: build_toolchain.sh =================================================================== RCS file: /cvsroot/linux-vax/toolchain/scripts/build_toolchain.sh,v retrieving revision 1.5 retrieving revision 1.6 diff -u -d -r1.5 -r1.6 --- build_toolchain.sh 4 May 2005 18:10:21 -0000 1.5 +++ build_toolchain.sh 11 May 2005 19:29:33 -0000 1.6 @@ -375,7 +375,12 @@ build "${BUILD_GAS}" && execute make ${MAKEFLAGS} install-gas popd -export PATH="$PATH:${INSTALL_BASE}/usr/bin" +# +# Extend our PATH with the newly built binutils; clear bash' command +# hash so that the new tools are used and not older ones... +# +export PATH="${INSTALL_BASE}/usr/bin:$PATH" +hash -r # # Build GCC, Part 1 |