diff options
author | jperkin <jperkin@pkgsrc.org> | 2012-09-20 10:01:50 +0000 |
---|---|---|
committer | jperkin <jperkin@pkgsrc.org> | 2012-09-20 10:01:50 +0000 |
commit | 7c4aa1a2a174ae5e138f9bde26e5f41c31694719 (patch) | |
tree | da1a04bf91a704f2c32331c4ba218de6bcc5cbc5 /lang | |
parent | 03973bef9a0ced921ba674446a95a887c121088b (diff) | |
download | pkgsrc-7c4aa1a2a174ae5e138f9bde26e5f41c31694719.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 |