Received: from localhost (localhost [127.0.0.1]) by mail.netbsd.org (Postfix) with ESMTP id 920A284D57 for ; Wed, 4 Oct 2023 11:40:00 +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 2Yw8_e0k4PPT for ; Wed, 4 Oct 2023 11:40:00 +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 E11B785325 for ; Wed, 4 Oct 2023 11:39:59 +0000 (UTC) Received: by cvs.NetBSD.org (Postfix, from userid 500) id DE83EFBDB; Wed, 4 Oct 2023 11:39:59 +0000 (UTC) Content-Transfer-Encoding: 7bit Content-Type: multipart/mixed; boundary="_----------=_169641959935600" MIME-Version: 1.0 Date: Wed, 4 Oct 2023 11:39:59 +0000 From: "Jonathan Perkin" Subject: CVS commit: pkgsrc/mk/install To: pkgsrc-changes@NetBSD.org Approved: commit_and_comment Reply-To: jperkin@netbsd.org X-Mailer: log_accum Message-Id: <20231004113959.DE83EFBDB@cvs.NetBSD.org> This is a multi-part message in MIME format. --_----------=_169641959935600 Content-Disposition: inline Content-Transfer-Encoding: 8bit Content-Type: text/plain; charset="US-ASCII" Module Name: pkgsrc Committed By: jperkin Date: Wed Oct 4 11:39:59 UTC 2023 Modified Files: pkgsrc/mk/install: install.mk Log Message: mk: Skip rust .rlib archives for debug stripping. To generate a diff of this commit: cvs rdiff -u -r1.84 -r1.85 pkgsrc/mk/install/install.mk Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files. --_----------=_169641959935600 Content-Disposition: inline Content-Length: 957 Content-Transfer-Encoding: binary Content-Type: text/x-diff; charset=us-ascii Modified files: Index: pkgsrc/mk/install/install.mk diff -u pkgsrc/mk/install/install.mk:1.84 pkgsrc/mk/install/install.mk:1.85 --- pkgsrc/mk/install/install.mk:1.84 Wed Sep 20 13:45:42 2023 +++ pkgsrc/mk/install/install.mk Wed Oct 4 11:39:59 2023 @@ -1,4 +1,4 @@ -# $NetBSD: install.mk,v 1.84 2023/09/20 13:45:42 jperkin Exp $ +# $NetBSD: install.mk,v 1.85 2023/10/04 11:39:59 jperkin Exp $ # # This file provides the code for the "install" phase. # @@ -351,7 +351,7 @@ _DEBUG_SKIP_PATTERNS+= ${PKGMANDIR}/* ${ _DEBUG_SKIP_PATTERNS+= *.css *.html *.js *.json *.md *.rst *.txt *.xml *.yaml _DEBUG_SKIP_PATTERNS+= *.php *.pl *.pm *.py *.pyc *.pyi *.pyo *.rb *.ri _DEBUG_SKIP_PATTERNS+= *.gif *.gz *.mo *.png *.po *.svg -_DEBUG_SKIP_PATTERNS+= *.a *.c *.h *.hpp *.la *.pc +_DEBUG_SKIP_PATTERNS+= *.a *.c *.h *.hpp *.la *.pc *.rlib _DEBUG_SKIP_PATTERNS+= *.dyn_hi *.hi *.p_hi ###################################################################### --_----------=_169641959935600--