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/tla | |
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/tla')
-rw-r--r-- | devel/tla/Makefile | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/devel/tla/Makefile b/devel/tla/Makefile index 7cf4d753c1f..7008be47e0f 100644 --- a/devel/tla/Makefile +++ b/devel/tla/Makefile @@ -1,4 +1,4 @@ -# $NetBSD: Makefile,v 1.33 2007/10/09 19:19:09 martti Exp $ +# $NetBSD: Makefile,v 1.34 2008/05/26 02:13:18 joerg Exp $ # DISTNAME= tla-1.3.5 @@ -24,7 +24,7 @@ CHECK_PORTABILITY_SKIP+= \ REPLACE_BASH+= src/tla/tests/changeset-tests/chmod_random USE_TOOLS+= bash -USE_TOOLS+= gmake +USE_TOOLS+= gmake pax HAS_CONFIGURE= yes OVERRIDE_GNU_CONFIG_SCRIPTS= yes @@ -48,7 +48,7 @@ post-install: cd ${WRKDIR}/${DISTNAME}/src/docs-tla && \ ${FIND} . \( -name \*.css -or -name \*.html \ -or -name \*.txt \) -print \ - | ${PAX} -rwppm ${DOCDIR} + | pax -rwppm ${DOCDIR} ${CHOWN} -R ${SHAREOWN}:${SHAREGRP} ${DOCDIR} ${FIND} ${DOCDIR} -type d -print | ${XARGS} ${CHMOD} ${PKGDIRMODE} ${FIND} ${DOCDIR} -type f -print | ${XARGS} ${CHMOD} ${SHAREMODE} |