Received: by mail.netbsd.org (Postfix, from userid 605) id DDEAA84D38; Mon, 10 Jul 2017 12:26:54 +0000 (UTC) Received: from localhost (localhost [127.0.0.1]) by mail.netbsd.org (Postfix) with ESMTP id 70C1F84D36 for ; Mon, 10 Jul 2017 12:26:54 +0000 (UTC) X-Virus-Scanned: amavisd-new at netbsd.org Received: from mail.netbsd.org ([127.0.0.1]) by localhost (mail.netbsd.org [127.0.0.1]) (amavisd-new, port 10025) with ESMTP id 350Np6yTcRYz for ; Mon, 10 Jul 2017 12:26:54 +0000 (UTC) Received: from cvs.NetBSD.org (ivanova.NetBSD.org [IPv6:2001:470:a085:999:28c:faff:fe03:5984]) by mail.netbsd.org (Postfix) with ESMTP id D03F184D33 for ; Mon, 10 Jul 2017 12:26:53 +0000 (UTC) Received: by cvs.NetBSD.org (Postfix, from userid 500) id CEA9CFBFC; Mon, 10 Jul 2017 12:26:53 +0000 (UTC) Content-Transfer-Encoding: 7bit Content-Type: multipart/mixed; boundary="_----------=_1499689613193430" MIME-Version: 1.0 Date: Mon, 10 Jul 2017 12:26:53 +0000 From: "Joerg Sonnenberger" Subject: CVS commit: pkgsrc/www/w3m To: pkgsrc-changes@NetBSD.org Reply-To: joerg@netbsd.org X-Mailer: log_accum Message-Id: <20170710122653.CEA9CFBFC@cvs.NetBSD.org> Sender: pkgsrc-changes-owner@NetBSD.org List-Id: pkgsrc-changes.NetBSD.org Precedence: bulk List-Unsubscribe: This is a multi-part message in MIME format. --_----------=_1499689613193430 Content-Disposition: inline Content-Transfer-Encoding: 8bit Content-Type: text/plain; charset="US-ASCII" Module Name: pkgsrc Committed By: joerg Date: Mon Jul 10 12:26:53 UTC 2017 Modified Files: pkgsrc/www/w3m: Makefile.common Log Message: Use copy mode for pax to avoid file format limitations. From Thomas Orgis. To generate a diff of this commit: cvs rdiff -u -r1.64 -r1.65 pkgsrc/www/w3m/Makefile.common Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files. --_----------=_1499689613193430 Content-Disposition: inline Content-Length: 913 Content-Transfer-Encoding: binary Content-Type: text/x-diff; charset=us-ascii Modified files: Index: pkgsrc/www/w3m/Makefile.common diff -u pkgsrc/www/w3m/Makefile.common:1.64 pkgsrc/www/w3m/Makefile.common:1.65 --- pkgsrc/www/w3m/Makefile.common:1.64 Sun Feb 19 18:35:13 2017 +++ pkgsrc/www/w3m/Makefile.common Mon Jul 10 12:26:53 2017 @@ -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-helpfil 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" --_----------=_1499689613193430--