mirror of
https://gitlab.freedesktop.org/libfprint/fprintd.git
synced 2026-01-08 21:10:26 +01:00
build: Do not try to reference potentially undefined pam_dep
Fixes compilation without PAM support after commit d371f35e3
This commit is contained in:
parent
d371f35e3a
commit
4eaa655352
1 changed files with 1 additions and 1 deletions
|
|
@ -229,7 +229,7 @@ if get_option('pam')
|
|||
output += ' PAM module directory: ' + pam_modules_dir
|
||||
endif
|
||||
output += '\nOptional features:\n'
|
||||
output += ' PAM module: ' + (pam_dep.found() and get_option('pam')).to_string()
|
||||
output += ' PAM module: ' + (get_option('pam') and pam_dep.found()).to_string()
|
||||
output += ' Manuals: ' + get_option('man').to_string()
|
||||
output += ' GTK Doc: ' + get_option('gtk_doc').to_string()
|
||||
output += ' XML Linter ' + xmllint.found().to_string()
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue