diff options
author | agc <agc@pkgsrc.org> | 2001-11-14 14:47:53 +0000 |
---|---|---|
committer | agc <agc@pkgsrc.org> | 2001-11-14 14:47:53 +0000 |
commit | be9bc4ff1b2299e27569fc091508ae53f0aab39f (patch) | |
tree | 447ac48b96997383700d42df0a8eedda1f4aed9b /lang/mercury | |
parent | 02878ee1527579538366a0aa94842bd4a781ea24 (diff) | |
download | pkgsrc-be9bc4ff1b2299e27569fc091508ae53f0aab39f.tar.gz |
Replace "${GTAR} cf - . | (cd ... ; ${GTAR} xf - )" pipelines with a
single instance of ${PAX}.
Diffstat (limited to 'lang/mercury')
-rw-r--r-- | lang/mercury/Makefile | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/lang/mercury/Makefile b/lang/mercury/Makefile index 04648dedb7d..14bf7a03a1d 100644 --- a/lang/mercury/Makefile +++ b/lang/mercury/Makefile @@ -1,4 +1,4 @@ -# $NetBSD: Makefile,v 1.3 2001/06/11 22:52:10 jtb Exp $ +# $NetBSD: Makefile,v 1.4 2001/11/14 14:47:55 agc Exp $ DISTNAME= mercury-compiler-0.10.1 PKGNAME= mercury-0.10.1 @@ -33,7 +33,6 @@ post-install: ${FIND} ${WRKSRC} -type f -name ".cvsignore" | ${XARGS} ${RM} -f ${INSTALL_DATA_DIR} ${PREFIX}/share/examples/mercury ${CHOWN} -R ${SHAREOWN}:${SHAREGRP} ${WRKSRC}/samples - (cd ${WRKSRC}/samples; ${GTAR} cpf - . ) | \ - (cd ${PREFIX}/share/examples/mercury; ${GTAR} xpf -) + cd ${WRKSRC}/samples && ${PAX} -rw . ${PREFIX}/share/examples/mercury .include "../../mk/bsd.pkg.mk" |