diff options
author | Alexander Leidinger <netchild@FreeBSD.org> | 2004-01-11 17:59:28 +0000 |
---|---|---|
committer | Alexander Leidinger <netchild@FreeBSD.org> | 2004-01-11 17:59:28 +0000 |
commit | e0984a2582bdf610097b92753a2bfdbcff4df975 (patch) | |
tree | 8d85bbe885a1dde7670de4035ac6e46801c84c63 | |
parent | 666eb0a218ce63b313eea1bd207539199715aa9d (diff) | |
download | freebsd-ports-e0984a2582bdf610097b92753a2bfdbcff4df975.zip |
Ok, it's not my day... gimme that extra large pointy hat please.
There slipped in a hardcoded /usr/local, it was supposed to be a
placeholder for LOCALBASE (to find the stlport lib in the ld wrapper).
Thanks to: Marius Strobl <marius@alchemy.franken.de>
for reviewing the commits.
-rw-r--r-- | lang/icc7/files/patch-ia32::bin::icc | 2 | ||||
-rw-r--r-- | lang/icc7/files/patch-ia32::bin::icpc | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/lang/icc7/files/patch-ia32::bin::icc b/lang/icc7/files/patch-ia32::bin::icc index bef8fac42018..b3777f9b1a7d 100644 --- a/lang/icc7/files/patch-ia32::bin::icc +++ b/lang/icc7/files/patch-ia32::bin::icc @@ -4,7 +4,7 @@ #!/bin/sh -if [ -z INTEL_LICENSE_FILE ] -+ICC_LOCALBASE=/usr/local ++ICC_LOCALBASE=%%ICC_LOCALBASE%% +export ICC_LOCALBASE; + +if [ -z "$INTEL_LICENSE_FILE" ] diff --git a/lang/icc7/files/patch-ia32::bin::icpc b/lang/icc7/files/patch-ia32::bin::icpc index 273ba769c93e..6e93712939c3 100644 --- a/lang/icc7/files/patch-ia32::bin::icpc +++ b/lang/icc7/files/patch-ia32::bin::icpc @@ -4,7 +4,7 @@ #!/bin/sh -if [ -z INTEL_LICENSE_FILE ] -+ICC_LOCALBASE=/usr/local ++ICC_LOCALBASE=%%ICC_LOCALBASE%% +export ICC_LOCALBASE; + +if [ -z "$INTEL_LICENSE_FILE" ] |