diff --git a/meson.build b/meson.build index 759b0ad4..4f8488f8 100644 --- a/meson.build +++ b/meson.build @@ -298,7 +298,7 @@ endif pam_include = get_option('pam_include') if pam_include == '' - if ['suse', 'solaris'].contains(os_type) + if ['suse', 'solaris', 'openembedded'].contains(os_type) pam_conf = { 'PAM_FILE_INCLUDE_AUTH': 'common-auth', 'PAM_FILE_INCLUDE_ACCOUNT': 'common-account', diff --git a/meson_options.txt b/meson_options.txt index 111a62c2..6259e486 100644 --- a/meson_options.txt +++ b/meson_options.txt @@ -7,7 +7,7 @@ option('polkitd_uid', type: 'string', value: '-', description: 'Fixed UID for us option('privileged_group', type: 'string', value: 'wheel', description: 'Group to use for default privileged access') option('authfw', type: 'combo', choices: ['pam', 'shadow', 'bsdauth'], value: 'pam', description: 'Authentication framework (pam/shadow)') -option('os_type', type: 'combo', choices: ['redhat', 'suse', 'gentoo', 'pardus', 'solaris', 'netbsd', 'lfs', ''], value: '', description: 'distribution or OS') +option('os_type', type: 'combo', choices: ['redhat', 'suse', 'gentoo', 'pardus', 'solaris', 'netbsd', 'lfs', 'openembedded', ''], value: '', description: 'distribution or OS') option('pam_include', type: 'string', value: '', description: 'pam file to include') option('pam_module_dir', type: 'string', value: '', description: 'directory to install PAM security module')