22193ca2cc0f4e023d331cc1391f55143ef9cade.patch (1415B)
1 From 22193ca2cc0f4e023d331cc1391f55143ef9cade Mon Sep 17 00:00:00 2001 2 From: Jan Rybar <jrybar@redhat.com> 3 Date: Wed, 17 Jan 2024 15:09:05 +0000 4 Subject: [PATCH] Move vendored PAM configuration from /etc 5 6 --- 7 meson.build | 5 +++-- 8 1 file changed, 3 insertions(+), 2 deletions(-) 9 10 diff --git a/meson.build b/meson.build 11 index 23d5f28a..2f81c907 100644 12 --- a/meson.build 13 +++ b/meson.build 14 @@ -263,7 +263,7 @@ if enable_pam 15 16 pam_prefix = get_option('pam_prefix') 17 if pam_prefix == '' 18 - pam_prefix = pk_sysconfdir / 'pam.d' 19 + pam_prefix = pk_prefix / 'lib/pam.d' 20 else 21 message('PAM files will be installed in prefix ' + pam_prefix) 22 endif 23 @@ -420,7 +420,8 @@ if enable_pam 24 output += ' PAM file auth: ' + pam_conf['PAM_FILE_INCLUDE_AUTH'] + '\n' 25 output += ' PAM file acount: ' + pam_conf['PAM_FILE_INCLUDE_ACCOUNT'] + '\n' 26 output += ' PAM file password: ' + pam_conf['PAM_FILE_INCLUDE_PASSWORD'] + '\n' 27 - output += ' PAM file session: ' + pam_conf['PAM_FILE_INCLUDE_SESSION'] + '\n\n' 28 + output += ' PAM file session: ' + pam_conf['PAM_FILE_INCLUDE_SESSION'] + '\n' 29 + output += ' PAM config location: ' + pam_prefix + '\n\n' 30 endif 31 output += ' Building api docs: ' + enable_gtk_doc.to_string() + '\n' 32 output += ' Building man pages: ' + enable_man.to_string() + '\n'