summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJan Rybar <jrybar@redhat.com>2024-01-17 15:09:05 +0000
committerJan Rybar <jrybar@redhat.com>2024-01-17 15:09:05 +0000
commit22193ca2cc0f4e023d331cc1391f55143ef9cade (patch)
treee96abbb563cf6492e20cb84df35c27b50cbc239f
parent9295e289cdb1b6cf2747ecf07054230e15edb385 (diff)
Move vendored PAM configuration from /etc
-rw-r--r--meson.build5
1 files changed, 3 insertions, 2 deletions
diff --git a/meson.build b/meson.build
index 23d5f28..2f81c90 100644
--- a/meson.build
+++ b/meson.build
@@ -263,7 +263,7 @@ if enable_pam
pam_prefix = get_option('pam_prefix')
if pam_prefix == ''
- pam_prefix = pk_sysconfdir / 'pam.d'
+ pam_prefix = pk_prefix / 'lib/pam.d'
else
message('PAM files will be installed in prefix ' + pam_prefix)
endif
@@ -420,7 +420,8 @@ if enable_pam
output += ' PAM file auth: ' + pam_conf['PAM_FILE_INCLUDE_AUTH'] + '\n'
output += ' PAM file acount: ' + pam_conf['PAM_FILE_INCLUDE_ACCOUNT'] + '\n'
output += ' PAM file password: ' + pam_conf['PAM_FILE_INCLUDE_PASSWORD'] + '\n'
- output += ' PAM file session: ' + pam_conf['PAM_FILE_INCLUDE_SESSION'] + '\n\n'
+ output += ' PAM file session: ' + pam_conf['PAM_FILE_INCLUDE_SESSION'] + '\n'
+ output += ' PAM config location: ' + pam_prefix + '\n\n'
endif
output += ' Building api docs: ' + enable_gtk_doc.to_string() + '\n'
output += ' Building man pages: ' + enable_man.to_string() + '\n'