aboutsummaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorWilliam Hubbs <w.d.hubbs@gmail.com>2021-12-31 11:01:55 -0600
committerWilliam Hubbs <w.d.hubbs@gmail.com>2021-12-31 11:01:55 -0600
commit0f8fe2a6cb9aec1d02a304224d0659968f8cad1e (patch)
tree30f4833f2929b95e58cdcfcc3f99276dcba81376 /src
parent29477075c87f25701eeeb71f4203e6d2924e3529 (diff)
define the pam directory at the top level
Diffstat (limited to 'src')
-rw-r--r--src/rc/meson.build8
1 files changed, 2 insertions, 6 deletions
diff --git a/src/rc/meson.build b/src/rc/meson.build
index 8b3fd205..8fdf3ac3 100644
--- a/src/rc/meson.build
+++ b/src/rc/meson.build
@@ -101,11 +101,9 @@ executable('start-stop-daemon',
install_dir: sbindir)
if get_option('pam')
- pam_dir = get_option('sysconfdir') / 'pam.d'
-
install_data('start-stop-daemon.pam',
rename : 'start-stop-daemon',
- install_dir : pam_dir)
+ install_dir : pamdir)
endif
executable('supervise-daemon',
@@ -119,11 +117,9 @@ executable('supervise-daemon',
install_dir: sbindir)
if get_option('pam')
- pam_dir = get_option('sysconfdir') / 'pam.d'
-
install_data('supervise-daemon.pam',
rename : 'supervise-daemon',
- install_dir : pam_dir)
+ install_dir : pamdir)
endif
if os == 'Linux'