diff options
author | joerg <joerg@pkgsrc.org> | 2017-07-10 12:26:53 +0000 |
---|---|---|
committer | joerg <joerg@pkgsrc.org> | 2017-07-10 12:26:53 +0000 |
commit | 0b71410b8aebc20f89833852127a568455aee997 (patch) | |
tree | f17d7adcf1f0eb4a2a060d1b0bf39b041e348f29 | |
parent | e730ff9713997494ed04da2737d863fe4d5b64bf (diff) | |
download | pkgsrc-0b71410b8aebc20f89833852127a568455aee997.tar.gz |
Use copy mode for pax to avoid file format limitations. From Thomas Orgis.
-rw-r--r-- | www/w3m/Makefile.common | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/www/w3m/Makefile.common b/www/w3m/Makefile.common index b83d83cb370..75f354eeb51 100644 --- a/www/w3m/Makefile.common +++ b/www/w3m/Makefile.common @@ -1,4 +1,4 @@ -# $NetBSD: Makefile.common,v 1.64 2017/02/19 18:35:13 snj Exp $ +# $NetBSD: Makefile.common,v 1.65 2017/07/10 12:26:53 joerg Exp $ # # used by www/w3m/Makefile # used by www/w3m-img/Makefile @@ -73,8 +73,8 @@ INSTALL_TARGET= install install-helpfile post-install: # Use pax to discard uid/gid. Exclude manuals (*.1). - set -e; cd ${WRKSRC}; pax -w -s ',.*\.1$$,,' doc doc-jp | \ - ( cd ${DESTDIR}${PREFIX}/${DOCDIR}; pax -r ) + set -e; cd ${WRKSRC}; pax -r -w -s ',.*\.1$$,,' doc doc-jp \ + ${DESTDIR}${PREFIX}/${DOCDIR} BUILDLINK_API_DEPENDS.boehm-gc+= boehm-gc>=7.2 .include "../../devel/boehm-gc/buildlink3.mk" |