diff options
author | joerg <joerg> | 2008-05-26 02:13:14 +0000 |
---|---|---|
committer | joerg <joerg> | 2008-05-26 02:13:14 +0000 |
commit | 2374ca422f2eb8b46ed600c7bb21740b2865d899 (patch) | |
tree | b711f279533efa082bd9211a7161438542a8810d /devel/bugzilla | |
parent | ef56178a4a7ad8f02178aa72c5c4a4567ade918b (diff) | |
download | pkgsrc-2374ca422f2eb8b46ed600c7bb21740b2865d899.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/bugzilla')
-rw-r--r-- | devel/bugzilla/Makefile | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/devel/bugzilla/Makefile b/devel/bugzilla/Makefile index 807e69d5f39..ea051f0e478 100644 --- a/devel/bugzilla/Makefile +++ b/devel/bugzilla/Makefile @@ -1,4 +1,4 @@ -# $NetBSD: Makefile,v 1.30 2008/05/24 13:19:51 tnn Exp $ +# $NetBSD: Makefile,v 1.31 2008/05/26 02:13:17 joerg Exp $ # DISTNAME= bugzilla-2.22.4 @@ -26,7 +26,7 @@ PKG_DESTDIR_SUPPORT= destdir .include "../../mk/bsd.prefs.mk" .include "options.mk" -USE_TOOLS+= perl:run +USE_TOOLS+= pax perl:run NO_BUILD= YES BZ_WEB_GROUP?= ${APACHE_GROUP} @@ -103,7 +103,7 @@ do-install: ${INSTALL_DATA} ${WRKSRC}/docs/html/*.html ${DESTDIR}${BZDIR}/docs/html .for i in ${PAX_DIRS} - cd ${WRKSRC}/${i} && ${PAX} -rw . ${DESTDIR}${BZDIR}/${i} + cd ${WRKSRC}/${i} && pax -rw . ${DESTDIR}${BZDIR}/${i} ${FIND} ${DESTDIR}${BZDIR}/${i} -type f | ${XARGS} ${CHMOD} ${SHAREMODE} ${FIND} ${DESTDIR}${BZDIR}/${i} -type d | ${XARGS} ${CHMOD} ${PKGDIRMODE} ${CHOWN} -R ${SHAREOWN}:${SHAREGRP} ${DESTDIR}${BZDIR}/${i} |