Received: by mail.netbsd.org (Postfix, from userid 605) id 8722584F71; Thu, 11 Aug 2022 07:20:54 +0000 (UTC) Received: from localhost (localhost [127.0.0.1]) by mail.netbsd.org (Postfix) with ESMTP id BDA0184F6D for ; Thu, 11 Aug 2022 07:20:53 +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 ckm6SgQ7bxRP for ; Thu, 11 Aug 2022 07:20:53 +0000 (UTC) Received: from cvs.NetBSD.org (ivanova.netbsd.org [199.233.217.197]) by mail.netbsd.org (Postfix) with ESMTP id 369F784D15 for ; Thu, 11 Aug 2022 07:20:53 +0000 (UTC) Received: by cvs.NetBSD.org (Postfix, from userid 500) id 2B50FFB1A; Thu, 11 Aug 2022 07:20:53 +0000 (UTC) Content-Transfer-Encoding: 7bit Content-Type: multipart/mixed; boundary="_----------=_166020245384900" MIME-Version: 1.0 Date: Thu, 11 Aug 2022 07:20:53 +0000 From: "Roland Illig" Subject: CVS commit: pkgsrc/pkgtools/lintpkgsrc To: pkgsrc-changes@NetBSD.org Reply-To: rillig@netbsd.org X-Mailer: log_accum Message-Id: <20220811072053.2B50FFB1A@cvs.NetBSD.org> Sender: pkgsrc-changes-owner@NetBSD.org List-Id: Precedence: bulk List-Unsubscribe: This is a multi-part message in MIME format. --_----------=_166020245384900 Content-Disposition: inline Content-Transfer-Encoding: 8bit Content-Type: text/plain; charset="US-ASCII" Module Name: pkgsrc Committed By: rillig Date: Thu Aug 11 07:20:53 UTC 2022 Modified Files: pkgsrc/pkgtools/lintpkgsrc: Makefile pkgsrc/pkgtools/lintpkgsrc/files: lintpkgsrc.pl Log Message: lintpkgsrc: cleanup: remove unused conf_sysconfdir It has been replaced with conf_makeconf. To generate a diff of this commit: cvs rdiff -u -r1.49 -r1.50 pkgsrc/pkgtools/lintpkgsrc/Makefile cvs rdiff -u -r1.74 -r1.75 pkgsrc/pkgtools/lintpkgsrc/files/lintpkgsrc.pl Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files. --_----------=_166020245384900 Content-Disposition: inline Content-Length: 1467 Content-Transfer-Encoding: binary Content-Type: text/x-diff; charset=us-ascii Modified files: Index: pkgsrc/pkgtools/lintpkgsrc/Makefile diff -u pkgsrc/pkgtools/lintpkgsrc/Makefile:1.49 pkgsrc/pkgtools/lintpkgsrc/Makefile:1.50 --- pkgsrc/pkgtools/lintpkgsrc/Makefile:1.49 Wed Aug 10 22:43:54 2022 +++ pkgsrc/pkgtools/lintpkgsrc/Makefile Thu Aug 11 07:20:52 2022 @@ -1,4 +1,4 @@ -# $NetBSD: Makefile,v 1.49 2022/08/10 22:43:54 rillig Exp $ +# $NetBSD: Makefile,v 1.50 2022/08/11 07:20:52 rillig Exp $ PKGNAME= lintpkgsrc-2022.08.10 CATEGORIES= pkgtools @@ -28,7 +28,6 @@ SUBST_VARS.lp+= MAKECONF SUBST_VARS.lp+= PERL5 SUBST_VARS.lp+= PKGSRCDIR SUBST_VARS.lp+= PKG_INFO -SUBST_VARS.lp+= PKG_SYSCONFDIR SUBST_VARS.lp+= PREFIX SUBST_VARS.lp+= X11BASE Index: pkgsrc/pkgtools/lintpkgsrc/files/lintpkgsrc.pl diff -u pkgsrc/pkgtools/lintpkgsrc/files/lintpkgsrc.pl:1.74 pkgsrc/pkgtools/lintpkgsrc/files/lintpkgsrc.pl:1.75 --- pkgsrc/pkgtools/lintpkgsrc/files/lintpkgsrc.pl:1.74 Thu Aug 11 07:18:47 2022 +++ pkgsrc/pkgtools/lintpkgsrc/files/lintpkgsrc.pl Thu Aug 11 07:20:52 2022 @@ -1,6 +1,6 @@ #!@PERL5@ -# $NetBSD: lintpkgsrc.pl,v 1.74 2022/08/11 07:18:47 rillig Exp $ +# $NetBSD: lintpkgsrc.pl,v 1.75 2022/08/11 07:20:52 rillig Exp $ # Written by David Brownlee . # @@ -152,7 +152,6 @@ my $conf_makeconf = '@MAKECONF@'; my $conf_pkg_info = '@PKG_INFO@'; my $conf_pkgsrcdir = '@PKGSRCDIR@'; my $conf_prefix = '@PREFIX@'; -my $conf_sysconfdir = '@PKG_SYSCONFDIR@'; my $conf_x11base = '@X11BASE@'; my ( --_----------=_166020245384900--