# HG changeset patch # User "Yann E. MORIN" # Date 1184165498 0 # Node ID d5f64f25163a19e9a84adf7c2e4a00b1a599f57e # Parent 13f12e53b1b72d4b7c591f6708a68444f6767287 Change the target-cc link from soft to hard. This way, there's no soft link in this directory. diff -r 13f12e53b1b7 -r d5f64f25163a scripts/build/cc_gcc.sh --- a/scripts/build/cc_gcc.sh Mon Jul 09 20:58:46 2007 +0000 +++ b/scripts/build/cc_gcc.sh Wed Jul 11 14:51:38 2007 +0000 @@ -139,7 +139,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 -s "${CT_TARGET}-gcc" "${CT_PREFIX_DIR}/bin/${CT_TARGET}-cc" + ln "${CT_TARGET}-gcc" "${CT_PREFIX_DIR}/bin/${CT_TARGET}-cc" CT_EndStep }