diff options
author | joerg <joerg> | 2008-05-26 02:13:14 +0000 |
---|---|---|
committer | joerg <joerg> | 2008-05-26 02:13:14 +0000 |
commit | 322586ec7e056266c541d642423c9aca509f0329 (patch) | |
tree | b711f279533efa082bd9211a7161438542a8810d /www/w3m | |
parent | 3540101cf6e8308dd8f7a131d1f776f628b525f2 (diff) | |
download | pkgsrc-322586ec7e056266c541d642423c9aca509f0329.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 'www/w3m')
-rw-r--r-- | www/w3m/Makefile.common | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/www/w3m/Makefile.common b/www/w3m/Makefile.common index 9ad9f0c7464..19f62833453 100644 --- a/www/w3m/Makefile.common +++ b/www/w3m/Makefile.common @@ -1,4 +1,4 @@ -# $NetBSD: Makefile.common,v 1.48 2008/03/05 18:01:50 jlam Exp $ +# $NetBSD: Makefile.common,v 1.49 2008/05/26 02:13:25 joerg Exp $ # DISTNAME= w3m-${W3M_VERS} @@ -18,7 +18,7 @@ USE_PKGLOCALEDIR= yes W3M_VERS= 0.5.2 # For w3mman, xface2xpm, cgi scripts. -USE_TOOLS+= perl:run +USE_TOOLS+= perl:run pax DOCDIR= share/doc/w3m @@ -63,10 +63,10 @@ post-patch: post-install: # Install help files. @cd ${WRKSRC}; ${MAKE_PROGRAM} install-helpfile - # Use ${PAX} to discard uid/gid. Exclude manuals (*.1). + # Use pax to discard uid/gid. Exclude manuals (*.1). ${INSTALL_DATA_DIR} ${PREFIX}/${DOCDIR} - @cd ${WRKSRC}; ${PAX} -w -s ',.*\.1$$,,' doc doc-jp | \ - ( cd ${PREFIX}/${DOCDIR}; ${PAX} -r ) + @cd ${WRKSRC}; pax -w -s ',.*\.1$$,,' doc doc-jp | \ + ( cd ${PREFIX}/${DOCDIR}; pax -r ) .include "../../devel/boehm-gc/buildlink3.mk" .include "../../devel/gettext-lib/buildlink3.mk" |