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 /pkgtools | |
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 'pkgtools')
-rw-r--r-- | pkgtools/x11-links/Makefile | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/pkgtools/x11-links/Makefile b/pkgtools/x11-links/Makefile index f99cd1ba5fd..6ce771283a1 100644 --- a/pkgtools/x11-links/Makefile +++ b/pkgtools/x11-links/Makefile @@ -1,4 +1,4 @@ -# $NetBSD: Makefile,v 1.90 2008/01/14 08:27:31 tnn Exp $ +# $NetBSD: Makefile,v 1.91 2008/05/26 02:13:23 joerg Exp $ # # NOTE: If you update this package, then you'll likely need to also update # the x11-links dependency in buildlink3.mk to the correct version, @@ -19,6 +19,7 @@ PKG_INSTALLATION_TYPES= overwrite pkgviews WRKSRC= ${WRKDIR} USE_LANGUAGES= # empty +USE_TOOLS+= pax EXTRACT_ONLY= # empty NO_CHECKSUM= yes NO_MTREE= yes @@ -93,6 +94,6 @@ do-build: do-install: ${INSTALL_DATA_DIR} ${DESTDIR:Q}${X11_LINKS_DIR:Q} cd ${X11_LINKS_BUILD_DIR} && \ - ${PAX} -rw . ${DESTDIR:Q}${X11_LINKS_DIR:Q} + pax -rw . ${DESTDIR:Q}${X11_LINKS_DIR:Q} .include "../../mk/bsd.pkg.mk" |