diff options
author | agc <agc> | 2001-11-14 14:47:53 +0000 |
---|---|---|
committer | agc <agc> | 2001-11-14 14:47:53 +0000 |
commit | 156e8a0198e13eeee1efa302bf146c8b76b46d56 (patch) | |
tree | 447ac48b96997383700d42df0a8eedda1f4aed9b /games/xtux/Makefile | |
parent | 3f404099c521eafbb4324d95c378766f09816f10 (diff) | |
download | pkgsrc-156e8a0198e13eeee1efa302bf146c8b76b46d56.tar.gz |
Replace "${GTAR} cf - . | (cd ... ; ${GTAR} xf - )" pipelines with a
single instance of ${PAX}.
Diffstat (limited to 'games/xtux/Makefile')
-rw-r--r-- | games/xtux/Makefile | 8 |
1 files changed, 3 insertions, 5 deletions
diff --git a/games/xtux/Makefile b/games/xtux/Makefile index 9e6c92b502e..d6be5ba90d6 100644 --- a/games/xtux/Makefile +++ b/games/xtux/Makefile @@ -1,4 +1,4 @@ -# $NetBSD: Makefile,v 1.2 2001/02/16 15:11:05 wiz Exp $ +# $NetBSD: Makefile,v 1.3 2001/11/14 14:47:54 agc Exp $ # DISTNAME= xtux-arena-src-nov-15 @@ -18,10 +18,8 @@ WRKSRC= ${WRKDIR}/xtux do-install: ${INSTALL_DATA_DIR} ${PREFIX}/share/xtux - cd ${WRKSRC} ; \ - ${GTAR} cf - data | ( cd ${PREFIX}/share/xtux ; ${GTAR} vxf - ) - cd ${WRKSRC} ; \ - ${GTAR} cf - doc | ( cd ${PREFIX}/share/xtux ; ${GTAR} vxf - ) + cd ${WRKSRC} && ${PAX} -rw data ${PREFIX}/share/xtux + cd ${WRKSRC} && ${PAX} -rw doc ${PREFIX}/share/xtux ${INSTALL_DATA} ${WRKSRC}/AUTHORS ${PREFIX}/share/xtux ${INSTALL_DATA} ${WRKSRC}/CHANGELOG ${PREFIX}/share/xtux ${INSTALL_DATA} ${WRKSRC}/COPYING ${PREFIX}/share/xtux |