Skip to content

Commit

Permalink
build: fix pamdir path
Browse files Browse the repository at this point in the history
  • Loading branch information
musikid committed Sep 12, 2023
1 parent 29f218d commit 0eb3eeb
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion howdy/src/pam/meson.build
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ paths_h = configure_file(
install_dir: get_option('pam_dir')
)

pamdir = get_option('pam_dir') != '' ? get_option('pam_dir') : join_paths(get_option('libdir'), 'security')
pamdir = get_option('pam_dir') != '' ? get_option('pam_dir') : join_paths(get_option('prefix'), get_option('libdir'), 'security')

shared_library(
'pam_howdy',
Expand Down

0 comments on commit 0eb3eeb

Please sign in to comment.