diff options
author | netchild <netchild@FreeBSD.org> | 2002-07-21 23:43:42 +0800 |
---|---|---|
committer | netchild <netchild@FreeBSD.org> | 2002-07-21 23:43:42 +0800 |
commit | f8a43978b29673277eda50a5b5242dd38c5ac5b2 (patch) | |
tree | 9b26d429c9bf94dfe2b0dc3b06e74e673d6841ab /lang/ifc | |
parent | 619d0fa62ccd95fb2c867ce0cac0686242fe1b70 (diff) | |
download | freebsd-ports-gnome-f8a43978b29673277eda50a5b5242dd38c5ac5b2.tar.gz freebsd-ports-gnome-f8a43978b29673277eda50a5b5242dd38c5ac5b2.tar.zst freebsd-ports-gnome-f8a43978b29673277eda50a5b5242dd38c5ac5b2.zip |
When lang/ifc and lang/icc are both installed, ifc does not use the correct
ld. Work around by reordering the PATH variable in the ifc wrapper script.
Submitted by: maintainer
PR: 40744
Bump PORTREVISION.
Diffstat (limited to 'lang/ifc')
-rw-r--r-- | lang/ifc/Makefile | 1 | ||||
-rw-r--r-- | lang/ifc/files/patch-aa | 14 |
2 files changed, 15 insertions, 0 deletions
diff --git a/lang/ifc/Makefile b/lang/ifc/Makefile index d663c20a4e86..b639bc7356ff 100644 --- a/lang/ifc/Makefile +++ b/lang/ifc/Makefile @@ -7,6 +7,7 @@ PORTNAME= ifc PORTVERSION= 6.0.159 +PORTREVISION= 1 CATEGORIES= lang devel emulators linux MASTER_SITES=# DISTNAME= l_fc_pu_6.0.159 diff --git a/lang/ifc/files/patch-aa b/lang/ifc/files/patch-aa new file mode 100644 index 000000000000..ac74eace1fe4 --- /dev/null +++ b/lang/ifc/files/patch-aa @@ -0,0 +1,14 @@ +--- opt/intel/compiler60/ia32/bin/ifc.old Thu Jul 18 18:52:59 2002 ++++ opt/intel/compiler60/ia32/bin/ifc Thu Jul 18 18:54:03 2002 +@@ -13,9 +13,9 @@ + + if [ -z PATH ] + then +- PATH=<INSTALLDIR>/compiler60/ia32/bin; ++ PATH=@LINUXBASE@/usr/bin:<INSTALLDIR>/compiler60/ia32/bin; + else +- PATH=<INSTALLDIR>/compiler60/ia32/bin:$PATH; ++ PATH=@LINUXBASE@/usr/bin:<INSTALLDIR>/compiler60/ia32/bin:$PATH; + fi + export PATH; + |