diff options
author | netchild <netchild@FreeBSD.org> | 2004-01-12 01:59:28 +0800 |
---|---|---|
committer | netchild <netchild@FreeBSD.org> | 2004-01-12 01:59:28 +0800 |
commit | 2803e043c69494e9eb3a97fe0a04a4ee981a2aee (patch) | |
tree | 95a9e76dd53e5ce81d286b477fba9a215d7f0520 /lang | |
parent | e1c1012578017ef1ad45d1ce592348eb7fad73d1 (diff) | |
download | freebsd-ports-gnome-2803e043c69494e9eb3a97fe0a04a4ee981a2aee.tar.gz freebsd-ports-gnome-2803e043c69494e9eb3a97fe0a04a4ee981a2aee.tar.zst freebsd-ports-gnome-2803e043c69494e9eb3a97fe0a04a4ee981a2aee.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.
Diffstat (limited to 'lang')
-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" ] |