# HG changeset patch # User "Yann E. MORIN" # Date 1225219904 0 # Node ID ed04e10c2d766e3416fcc6e030befb2ef513ebcf # Parent bda04a723d171a354bcff484168441e9132f6e5b Make a relative symlink from ${CT_TARGET}-cc to ${CT_TARGET}-gcc. This helps those who want to relocate their toolchains later. Reported by Nye Liu: http://sourceware.org/ml/crossgcc/2008-10/msg00093.html /trunk/scripts/build/cc/gcc.sh | 2 1 1 0 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff -r bda04a723d17 -r ed04e10c2d76 scripts/build/cc/gcc.sh --- a/scripts/build/cc/gcc.sh Tue Oct 28 15:07:28 2008 +0000 +++ b/scripts/build/cc/gcc.sh Tue Oct 28 18:51:44 2008 +0000 @@ -297,7 +297,7 @@ # Create a symlink ${CT_TARGET}-cc to ${CT_TARGET}-gcc to always be able # to call the C compiler with the same, somewhat canonical name. - ln -sv "${CT_PREFIX_DIR}/bin/${CT_TARGET}"-{g,}cc 2>&1 |CT_DoLog ALL + CT_DoExecLog ALL ln -sv "${CT_TARGET}"-gcc "${CT_PREFIX_DIR}/bin/${CT_TARGET}"-cc CT_EndStep }