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 /sysutils/lsof | |
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 'sysutils/lsof')
-rw-r--r-- | sysutils/lsof/Makefile | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/sysutils/lsof/Makefile b/sysutils/lsof/Makefile index df18906bc0c..3da676d240c 100644 --- a/sysutils/lsof/Makefile +++ b/sysutils/lsof/Makefile @@ -1,4 +1,4 @@ -# $NetBSD: Makefile,v 1.96 2008/05/17 23:53:29 christos Exp $ +# $NetBSD: Makefile,v 1.97 2008/05/26 02:13:23 joerg Exp $ DISTNAME= lsof_4.78 PKGNAME= ${DISTNAME:S/_/-/}.${OS_VERSION} @@ -34,7 +34,7 @@ REPLACE_PERL+= scripts/sort_res.perl5 scripts/count_pf.perl5 \ scripts/idrlogin.perl5 scripts/count_pf.perl \ scripts/idrlogin.perl scripts/list_fields.perl \ scripts/watch_a_file.perl -USE_TOOLS+= gtar perl:run +USE_TOOLS+= gtar pax perl:run PKG_INSTALLATION_TYPES= overwrite pkgviews @@ -62,7 +62,7 @@ post-extract: if [ X${EXTRACT_USING} = Xgtar ]; then \ ${GTAR} -xf ${SRCBALL_NAME}.tar; \ else \ - ${PAX} -O -r < ${SRCBALL_NAME}.tar; \ + pax -O -r < ${SRCBALL_NAME}.tar; \ fi) @( cd ${WRKSRC} ; ${ECHO} "y" | ./Inventory || exit 1 ) |