diff options
author | asami <asami@FreeBSD.org> | 2000-11-14 21:38:38 +0800 |
---|---|---|
committer | asami <asami@FreeBSD.org> | 2000-11-14 21:38:38 +0800 |
commit | edb2018c1ea53b11be8d97d88ac9b3015a83f10d (patch) | |
tree | e0c099b1f462ced39f6cf0f7d6af57f4d8776ea2 /lang | |
parent | 695af79606918ebdeb6633d38e4a30c6fc2ab243 (diff) | |
download | freebsd-ports-graphics-edb2018c1ea53b11be8d97d88ac9b3015a83f10d.tar.gz freebsd-ports-graphics-edb2018c1ea53b11be8d97d88ac9b3015a83f10d.tar.zst freebsd-ports-graphics-edb2018c1ea53b11be8d97d88ac9b3015a83f10d.zip |
WRKDIR of lang/gcc28 should be accessed through ${.CURDIR}/../../lang/gcc28,
not ${PORTSDIR}/lang/gcc28, since ${PORTSDIR} might be a symlink.
Submitted by: bento
Diffstat (limited to 'lang')
-rw-r--r-- | lang/gpc/Makefile | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lang/gpc/Makefile b/lang/gpc/Makefile index 9d6c927a605..e81c6a634e1 100644 --- a/lang/gpc/Makefile +++ b/lang/gpc/Makefile @@ -31,6 +31,6 @@ PLIST_SUB= GNUHOST=${GNUHOST} CONFIGURE_ARGS= --with-gxx-include-dir=${PREFIX}/lib/gcc-lib/${GNUHOST}/2.8.1/include/g++ post-extract: - @(${CP} -R ${WRKDIRPREFIX}${PORTSDIR}/lang/gcc28/work/gcc-2.8.1/* ${WRKSRC}) + @(${CP} -R ${WRKDIRPREFIX}${.CURDIR}/../../lang/gcc28/work/gcc-2.8.1/* ${WRKSRC}) .include <bsd.port.post.mk> |