diff options
author | joerg <joerg@pkgsrc.org> | 2009-06-02 22:32:49 +0000 |
---|---|---|
committer | joerg <joerg@pkgsrc.org> | 2009-06-02 22:32:49 +0000 |
commit | 869429a0e93be29aea460716819f0e4b8aa93749 (patch) | |
tree | f5cf45bf049d7ab5271413eee275646009728040 /mk/compiler/icc.mk | |
parent | 3ba39f1c8b922e5e95590f3ccd9a50715bb16152 (diff) | |
download | pkgsrc-869429a0e93be29aea460716819f0e4b8aa93749.tar.gz |
Learn from the AIX issues with hard links to symbolic links and always
create the compiler aliases with ln -fs.
Diffstat (limited to 'mk/compiler/icc.mk')
-rw-r--r-- | mk/compiler/icc.mk | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/mk/compiler/icc.mk b/mk/compiler/icc.mk index befa686fe8a..4f8ff385065 100644 --- a/mk/compiler/icc.mk +++ b/mk/compiler/icc.mk @@ -1,4 +1,4 @@ -# $NetBSD: icc.mk,v 1.6 2009/05/30 18:16:26 joerg Exp $ +# $NetBSD: icc.mk,v 1.7 2009/06/02 22:32:49 joerg Exp $ # # This is the compiler definition for the Intel compilers. # @@ -94,7 +94,7 @@ ${_ICC_${_var_}}: . for _alias_ in ${_ALIASES.${_var_}:S/^/${.TARGET:H}\//} ${RUN} \ if [ ! -x "${_alias_}" ]; then \ - ${LN} -f ${.TARGET} ${_alias_}; \ + ${LN} -f -s ${.TARGET} ${_alias_}; \ fi . endfor . endif |