Change the target-cc link from soft to hard. This way, there's no soft link in this directory.
author"Yann E. MORIN" <yann.morin.1998@anciens.enib.fr>
Wed Jul 11 14:51:38 2007 +0000 (2007-07-11)
changeset 231d5f64f25163a
parent 230 13f12e53b1b7
child 232 d9ccfd05846e
Change the target-cc link from soft to hard. This way, there's no soft link in this directory.
scripts/build/cc_gcc.sh
     1.1 --- a/scripts/build/cc_gcc.sh	Mon Jul 09 20:58:46 2007 +0000
     1.2 +++ b/scripts/build/cc_gcc.sh	Wed Jul 11 14:51:38 2007 +0000
     1.3 @@ -139,7 +139,7 @@
     1.4  
     1.5      # Create a symlink ${CT_TARGET}-cc to ${CT_TARGET}-gcc to always be able
     1.6      # to call the C compiler with the same, somewhat canonical name.
     1.7 -    ln -s "${CT_TARGET}-gcc" "${CT_PREFIX_DIR}/bin/${CT_TARGET}-cc"
     1.8 +    ln "${CT_TARGET}-gcc" "${CT_PREFIX_DIR}/bin/${CT_TARGET}-cc"
     1.9  
    1.10      CT_EndStep
    1.11  }