diff options
author | jperkin <jperkin> | 2012-09-20 10:01:50 +0000 |
---|---|---|
committer | jperkin <jperkin> | 2012-09-20 10:01:50 +0000 |
commit | 4f5f0715ae0e9c8002e2ffe5db547d7cf9e544a8 (patch) | |
tree | da1a04bf91a704f2c32331c4ba218de6bcc5cbc5 /lang | |
parent | 9ae7da9777c1aa8093e079303069e5b3cb6b4ec6 (diff) | |
download | pkgsrc-4f5f0715ae0e9c8002e2ffe5db547d7cf9e544a8.tar.gz |
Use gzcat rather than pax -z.
Diffstat (limited to 'lang')
-rw-r--r-- | lang/sr-examples/Makefile | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/lang/sr-examples/Makefile b/lang/sr-examples/Makefile index c9b757bb9f5..3d24e7903c1 100644 --- a/lang/sr-examples/Makefile +++ b/lang/sr-examples/Makefile @@ -1,4 +1,4 @@ -# $NetBSD: Makefile,v 1.9 2008/05/26 02:13:21 joerg Exp $ +# $NetBSD: Makefile,v 1.10 2012/09/20 10:01:50 jperkin Exp $ # DISTNAME= vs233 @@ -14,7 +14,7 @@ COMMENT= The SR language compiler and run time system PKG_DESTDIR_SUPPORT= user-destdir -USE_TOOLS+= pax +USE_TOOLS+= gzcat pax WRKSRC= ${WRKDIR} NO_EXTRACT= yes @@ -28,7 +28,7 @@ DOMOD= do-install: ${INSTALL_DATA_DIR} ${DESTDIR}${PREFIX:Q}/share/examples/sr cd ${DESTDIR}${PREFIX:Q}/share/examples/sr && \ - pax -zr ${DOMOD} -f ${DISTDIR:Q}/${DISTFILES:Q} \ + gzcat ${DISTDIR:Q}/${DISTFILES:Q} | pax -r ${DOMOD} \ -s ,vsuite/examples,., \ vsuite/examples |