diff options
author | joerg <joerg@pkgsrc.org> | 2008-05-26 02:13:14 +0000 |
---|---|---|
committer | joerg <joerg@pkgsrc.org> | 2008-05-26 02:13:14 +0000 |
commit | 3d8ef5a52d6570c7a88c64337bb6c476b78c810c (patch) | |
tree | b711f279533efa082bd9211a7161438542a8810d /devel/acme | |
parent | 7f7f5ce9170554e6c0c04606c5c2c0548ffab031 (diff) | |
download | pkgsrc-3d8ef5a52d6570c7a88c64337bb6c476b78c810c.tar.gz |
Second round of explicit pax dependencies. As reminded by tnn@,
many packages used to use ${PAX}. Use the common way of directly calling
pax, it is created as tool after all.
Diffstat (limited to 'devel/acme')
-rw-r--r-- | devel/acme/Makefile | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/devel/acme/Makefile b/devel/acme/Makefile index 805c67a76c5..e2e6dc13503 100644 --- a/devel/acme/Makefile +++ b/devel/acme/Makefile @@ -1,4 +1,4 @@ -# $NetBSD: Makefile,v 1.11 2008/03/03 17:45:33 jlam Exp $ +# $NetBSD: Makefile,v 1.12 2008/05/26 02:13:17 joerg Exp $ # DISTNAME= acme085_linux @@ -14,7 +14,7 @@ COMMENT= Cross assembler for 6502, 65c02, and 65816 PKG_DESTDIR_SUPPORT= destdir -USE_TOOLS+= unzip +USE_TOOLS+= pax unzip WRKSRC= ${WRKTOP}/sources LIBDIST= lib002.zip @@ -34,7 +34,7 @@ do-install: ${INSTALL_DATA_DIR} ${DESTDIR}${PREFIX}/share/doc/acme ${INSTALL_DATA} ${WRKTOP}/docs/* ${DESTDIR}${PREFIX}/share/doc/acme ${INSTALL_DATA_DIR} ${DESTDIR}${ACME_LIB} - cd ${WRKDIR}/ACME_Lib && ${PAX} -rw . ${DESTDIR}${ACME_LIB} + cd ${WRKDIR}/ACME_Lib && pax -rw . ${DESTDIR}${ACME_LIB} ${CHOWN} -R ${ROOT_USER}:${ROOT_GROUP} ${DESTDIR}${ACME_LIB} .include "../../mk/bsd.pkg.mk" |