Received: from localhost (localhost [127.0.0.1]) by mail.netbsd.org (Postfix) with ESMTP id A568584F27 for ; Thu, 22 Jun 2023 10:41:17 +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 EOXiPsa1vWWk for ; Thu, 22 Jun 2023 10:41:17 +0000 (UTC) Received: from cvs.NetBSD.org (ivanova.netbsd.org [199.233.217.197]) by mail.netbsd.org (Postfix) with ESMTP id 05FF484CD9 for ; Thu, 22 Jun 2023 10:41:17 +0000 (UTC) Received: by cvs.NetBSD.org (Postfix, from userid 500) id 73FB1FA89; Thu, 22 Jun 2023 10:41:16 +0000 (UTC) Content-Transfer-Encoding: 7bit Content-Type: multipart/mixed; boundary="_----------=_1687430476129960" MIME-Version: 1.0 Date: Thu, 22 Jun 2023 10:41:16 +0000 From: "Jonathan Perkin" Subject: CVS commit: pkgsrc/security/polkit To: pkgsrc-changes@NetBSD.org Approved: commit_and_comment Reply-To: jperkin@netbsd.org X-Mailer: log_accum Message-Id: <20230622104116.73FB1FA89@cvs.NetBSD.org> This is a multi-part message in MIME format. --_----------=_1687430476129960 Content-Disposition: inline Content-Transfer-Encoding: 8bit Content-Type: text/plain; charset="US-ASCII" Module Name: pkgsrc Committed By: jperkin Date: Thu Jun 22 10:41:16 UTC 2023 Modified Files: pkgsrc/security/polkit: options.mk Log Message: polkit: Fix broken PKG_SYSCONFDIR assumption. To generate a diff of this commit: cvs rdiff -u -r1.6 -r1.7 pkgsrc/security/polkit/options.mk Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files. --_----------=_1687430476129960 Content-Disposition: inline Content-Length: 753 Content-Transfer-Encoding: binary Content-Type: text/x-diff; charset=us-ascii Modified files: Index: pkgsrc/security/polkit/options.mk diff -u pkgsrc/security/polkit/options.mk:1.6 pkgsrc/security/polkit/options.mk:1.7 --- pkgsrc/security/polkit/options.mk:1.6 Wed Jun 7 15:36:40 2023 +++ pkgsrc/security/polkit/options.mk Thu Jun 22 10:41:16 2023 @@ -1,4 +1,4 @@ -# $NetBSD: options.mk,v 1.6 2023/06/07 15:36:40 wiz Exp $ +# $NetBSD: options.mk,v 1.7 2023/06/22 10:41:16 jperkin Exp $ PKG_OPTIONS_VAR= PKG_OPTIONS.polkit PKG_SUPPORTED_OPTIONS= pam @@ -18,6 +18,6 @@ INSTALLATION_DIRS+= share/examples/pam.d post-install: pam-move .PHONY: pam-move pam-move: - ${MV} ${DESTDIR}${PREFIX}/etc/pam.d/polkit-1 \ + ${MV} ${DESTDIR}${PKG_SYSCONFDIR}/pam.d/polkit-1 \ ${DESTDIR}${PREFIX}/share/examples/pam.d/polkit-1 .endif --_----------=_1687430476129960--