diff options
Diffstat (limited to 'lang/icc7/files/patch-icpc')
-rw-r--r-- | lang/icc7/files/patch-icpc | 41 |
1 files changed, 41 insertions, 0 deletions
diff --git a/lang/icc7/files/patch-icpc b/lang/icc7/files/patch-icpc new file mode 100644 index 000000000000..03e4dd7c1c95 --- /dev/null +++ b/lang/icc7/files/patch-icpc @@ -0,0 +1,41 @@ +--- opt/intel/compiler60/ia32/bin/icpc.orig Fri Sep 6 02:18:03 2002 ++++ opt/intel/compiler60/ia32/bin/icpc Tue Sep 10 18:32:59 2002 +@@ -1,29 +1,29 @@ + #!/bin/sh + +-INTEL_LICENSE_FILE=<INSTALLDIR>/licenses; ++PREFIX=@@PREFIX@@ ++export PREFIX; ++INTEL_LICENSE_FILE=${PREFIX}/intel/licenses; + export INTEL_LICENSE_FILE; + + if [ -z LD_LIBRARY_PATH ] + then +- LD_LIBRARY_PATH=<INSTALLDIR>/compiler60/ia32/lib; ++ LD_LIBRARY_PATH=${PREFIX}/intel/compiler60/ia32/lib; + else +- LD_LIBRARY_PATH=<INSTALLDIR>/compiler60/ia32/lib:$LD_LIBRARY_PATH ++ LD_LIBRARY_PATH=${PREFIX}/intel/compiler60/ia32/lib:$LD_LIBRARY_PATH + fi + export LD_LIBRARY_PATH; + + if [ -z PATH ] + then +- PATH=<INSTALLDIR>/compiler60/ia32/bin; ++ PATH=${PREFIX}/intel/compiler60/ia32/bin; + else +- PATH=<INSTALLDIR>/compiler60/ia32/bin:$PATH; ++ PATH=${PREFIX}/intel/compiler60/ia32/bin:$PATH; + fi + export PATH; + +-export -n IA32ROOT; unset IA32ROOT; +- + if [ $# != 0 ] + then +- exec -a "<INSTALLDIR>/compiler60/ia32/bin/icpc" <INSTALLDIR>/compiler60/ia32/bin/icpcbin "$@"; ++ exec ${PREFIX}/intel/compiler60/ia32/bin/icpcbin "$@"; + else +- exec -a "<INSTALLDIR>/compiler60/ia32/bin/icpc" <INSTALLDIR>/compiler60/ia32/bin/icpcbin; ++ exec ${PREFIX}/intel/compiler60/ia32/bin/icpcbin; + fi |