diff options
author | Luciano Santos <luciano.santos@email.com> | 2022-08-10 08:48:54 -0300 |
---|---|---|
committer | Jan Rybar <jrybar@redhat.com> | 2022-08-15 08:35:22 +0000 |
commit | 8e555982e5801e540925235beec42a2782911ea0 (patch) | |
tree | 53a8477ca1f9653b9184ee2eaa802676690e83fd /data/meson.build | |
parent | f662e3b7de14f52b601d8435f4f42e20af0e95ca (diff) | |
download | polkit-8e555982e5801e540925235beec42a2782911ea0.tar.gz |
build: Honour pam_prefix meson option
Make the use of pam_prefix worth its while since, at the moment, its value
is not being used. Instead, a hard-coded path is being deployed when it
shouldn't anymore.
Diffstat (limited to 'data/meson.build')
-rw-r--r-- | data/meson.build | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/data/meson.build b/data/meson.build index b7b2fcd..5889495 100644 --- a/data/meson.build +++ b/data/meson.build @@ -22,7 +22,7 @@ if enable_pam output: '@BASENAME@', configuration: pam_conf, install: true, - install_dir: pk_sysconfdir / 'pam.d', + install_dir: pam_prefix, ) endif |