Change the target-cc link from soft to hard. This way, there's no soft link in this directory.

This commit is contained in:
Yann E. MORIN" 2007-07-11 14:51:38 +00:00
parent 4707ea0357
commit c818d161bf

View File

@ -139,7 +139,7 @@ do_cc() {
# 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
}