Received: by mail.netbsd.org (Postfix, from userid 605) id 8CB6884DBC; Tue, 9 Feb 2021 10:37:20 +0000 (UTC) Received: from localhost (localhost [127.0.0.1]) by mail.netbsd.org (Postfix) with ESMTP id C495D84DA2 for ; Tue, 9 Feb 2021 10:37:19 +0000 (UTC) X-Virus-Scanned: amavisd-new at netbsd.org Received: from mail.netbsd.org ([IPv6:::1]) by localhost (mail.netbsd.org [IPv6:::1]) (amavisd-new, port 10025) with ESMTP id SgVKw1Ci9ttE for ; Tue, 9 Feb 2021 10:37:19 +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 28A3384D1D for ; Tue, 9 Feb 2021 10:37:19 +0000 (UTC) Received: by cvs.NetBSD.org (Postfix, from userid 500) id 1B727FA95; Tue, 9 Feb 2021 10:37:19 +0000 (UTC) Content-Transfer-Encoding: 7bit Content-Type: multipart/mixed; boundary="_----------=_161286703992310" MIME-Version: 1.0 Date: Tue, 9 Feb 2021 10:37:19 +0000 From: "Thomas Klausner" Subject: CVS commit: pkgsrc/lang/gcc9 To: pkgsrc-changes@NetBSD.org Reply-To: wiz@netbsd.org X-Mailer: log_accum Message-Id: <20210209103719.1B727FA95@cvs.NetBSD.org> Sender: pkgsrc-changes-owner@NetBSD.org List-Id: Precedence: bulk List-Unsubscribe: This is a multi-part message in MIME format. --_----------=_161286703992310 Content-Disposition: inline Content-Transfer-Encoding: 8bit Content-Type: text/plain; charset="US-ASCII" Module Name: pkgsrc Committed By: wiz Date: Tue Feb 9 10:37:19 UTC 2021 Modified Files: pkgsrc/lang/gcc9: Makefile Log Message: gcc9: fix typo in GENERATE_PLIST to fix packaging Fix indentation. To generate a diff of this commit: cvs rdiff -u -r1.26 -r1.27 pkgsrc/lang/gcc9/Makefile Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files. --_----------=_161286703992310 Content-Disposition: inline Content-Length: 832 Content-Transfer-Encoding: binary Content-Type: text/x-diff; charset=us-ascii Modified files: Index: pkgsrc/lang/gcc9/Makefile diff -u pkgsrc/lang/gcc9/Makefile:1.26 pkgsrc/lang/gcc9/Makefile:1.27 --- pkgsrc/lang/gcc9/Makefile:1.26 Fri Feb 5 10:28:40 2021 +++ pkgsrc/lang/gcc9/Makefile Tue Feb 9 10:37:18 2021 @@ -1,4 +1,4 @@ -# $NetBSD: Makefile,v 1.26 2021/02/05 10:28:40 maya Exp $ +# $NetBSD: Makefile,v 1.27 2021/02/09 10:37:18 wiz Exp $ GCC_PKGNAME= gcc9 .include "version.mk" @@ -190,8 +190,8 @@ post-install: || (cd ${DESTDIR}${GCC9_PREFIX}/bin && ${LN} -f gcc cc) GENERATE_PLIST+= \ - cd ${DESTDIR}${PREFIX} && \ - ${FIND} ${GCC_SUBPREFIX} \( -type f -o -type l \) -print | ${SORT}; + cd ${DESTDIR}${PREFIX} && \ + ${FIND} ${GCC9_SUBPREFIX} \( -type f -o -type l \) -print | ${SORT}; .include "../../devel/zlib/buildlink3.mk" .include "../../lang/python/application.mk" --_----------=_161286703992310--