diff options
author | dholland <dholland@pkgsrc.org> | 2015-11-08 07:05:45 +0000 |
---|---|---|
committer | dholland <dholland@pkgsrc.org> | 2015-11-08 07:05:45 +0000 |
commit | ddc67219fab1eae145080c2c90fa363429a2d0b3 (patch) | |
tree | 9c6aec2c49b25924ba1c1a7ec3b7ba4b935968a7 /lang/gpc | |
parent | b3c49b9bd93ba3aa9169c2ffc330bb27922b616b (diff) | |
download | pkgsrc-ddc67219fab1eae145080c2c90fa363429a2d0b3.tar.gz |
Catch up to move of lang/gcc -> lang/gcc2.
Also, fix the referring paths to use the canonical pkgsrc form
(../../lang/gcc2) rather than ${.CURDIR}/../gcc2, which is not
idiomatic and thus easily overlooked, both by hand and via grep.
Diffstat (limited to 'lang/gpc')
-rw-r--r-- | lang/gpc/Makefile | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/lang/gpc/Makefile b/lang/gpc/Makefile index 7a2dee42d38..aacaa8a9c5b 100644 --- a/lang/gpc/Makefile +++ b/lang/gpc/Makefile @@ -1,4 +1,4 @@ -# $NetBSD: Makefile,v 1.36 2014/06/29 05:08:36 dholland Exp $ +# $NetBSD: Makefile,v 1.37 2015/11/08 07:05:45 dholland Exp $ DISTNAME= gpc-2.1 PKGREVISION= 5 @@ -57,9 +57,9 @@ INFO_FILES= yes post-extract: ${MKDIR} ${WRKSRC} - ${CP} ${.CURDIR}/../gcc/files/xm-netbsd.h ${WRKSRC}/gcc/config - ${CP} ${.CURDIR}/../gcc/files/xm-target64.h ${WRKSRC}/gcc/config - for file in ${.CURDIR}/../gcc/files/*_* ; do \ + ${CP} ../../lang/gcc2/files/xm-netbsd.h ${WRKSRC}/gcc/config + ${CP} ../../lang/gcc2/files/xm-target64.h ${WRKSRC}/gcc/config + for file in ../../lang/gcc2/files/*_* ; do \ arch=`${BASENAME} $${file} | ${SED} -e "s/_.*//"`; \ dest=`${BASENAME} $${file} | ${SED} -e "s/$${arch}_//"`; \ ${MKDIR} ${WRKSRC}/gcc/config/$${arch}; \ |