diff options
author | Alexander Leidinger <netchild@FreeBSD.org> | 2003-04-02 10:50:38 +0000 |
---|---|---|
committer | Alexander Leidinger <netchild@FreeBSD.org> | 2003-04-02 10:50:38 +0000 |
commit | a85b62794098ed5a9746114c94a5a37693c19821 (patch) | |
tree | e827610248f0001ab7231a87f613ade3710c3e1b /lang/icc7/files/patch-ia32::bin::icpc | |
parent | remove dead mastersite (diff) |
The new version of icc adds -I include paths before the standard include
path, thus adding a system path with -I results in not respecting the
sunstitute headers. This results in problems because we have some important
changes there.
Parts of this commit where
Submitted by: marius@alchemy.franken.de
Diffstat (limited to '')
-rw-r--r-- | lang/icc7/files/patch-ia32::bin::icpc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lang/icc7/files/patch-ia32::bin::icpc b/lang/icc7/files/patch-ia32::bin::icpc index a4cc5026d007..712e1925aea8 100644 --- a/lang/icc7/files/patch-ia32::bin::icpc +++ b/lang/icc7/files/patch-ia32::bin::icpc @@ -67,7 +67,7 @@ + set -- "$@" "$val1" + i=$(($i+1)) + done -+ exec ${PREFIX}/intel/compiler70/ia32/bin/icpcbin "$@"; ++ exec ${PREFIX}/intel/compiler70/ia32/bin/icpcbin -I${PREFIX}/intel/compiler70/ia32/include -I${PREFIX}/intel/compiler70/ia32/include/substitute_headers "$@"; else - exec -a "<INSTALLDIR>/compiler70/ia32/bin/icpc" <INSTALLDIR>/compiler70/ia32/bin/icpcbin; + exec ${PREFIX}/intel/compiler70/ia32/bin/icpcbin; |