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 | |
parent | 5a7952a6a94fb0625155e2083e076a894a2cbf23 (diff) | |
download | ports-a85b62794098ed5a9746114c94a5a37693c19821.tar.gz ports-a85b62794098ed5a9746114c94a5a37693c19821.zip |
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
Notes
Notes:
svn path=/head/; revision=77956
Diffstat (limited to 'lang/icc7')
-rw-r--r-- | lang/icc7/Makefile | 1 | ||||
-rw-r--r-- | lang/icc7/files/patch-ia32::bin::icc | 2 | ||||
-rw-r--r-- | lang/icc7/files/patch-ia32::bin::icpc | 2 |
3 files changed, 3 insertions, 2 deletions
diff --git a/lang/icc7/Makefile b/lang/icc7/Makefile index 0d5f6188479f..8fc2fa7af37b 100644 --- a/lang/icc7/Makefile +++ b/lang/icc7/Makefile @@ -7,6 +7,7 @@ PORTNAME= icc PORTVERSION= 7.1.006 +PORTREVISION= 1 CATEGORIES= lang linux devel MASTER_SITES= DISTNAME= l_cc_p_${PORTVERSION} diff --git a/lang/icc7/files/patch-ia32::bin::icc b/lang/icc7/files/patch-ia32::bin::icc index 596787d71cc3..5f637a0b017d 100644 --- a/lang/icc7/files/patch-ia32::bin::icc +++ b/lang/icc7/files/patch-ia32::bin::icc @@ -74,7 +74,7 @@ + set -- "$@" "$val1" + i=$(($i+1)) + done -+ exec ${PREFIX}/intel/compiler70/ia32/bin/iccbin "$@"; ++ exec ${PREFIX}/intel/compiler70/ia32/bin/iccbin -I${PREFIX}/intel/compiler70/ia32/include -I${PREFIX}/intel/compiler70/ia32/include/substitute_headers "$@"; else - exec -a "<INSTALLDIR>/compiler70/ia32/bin/icc" <INSTALLDIR>/compiler70/ia32/bin/iccbin; + exec ${PREFIX}/intel/compiler70/ia32/bin/iccbin; 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; |