toolbox/meson_options.txt
Randall Mason a733357053 build: Allow overriding the path to tmpfilesdir
When installing to a non-system-wide prefix as a non-root user, the
tmpfilesdir path defined by systemd might not be accessible. Overriding
the path helps to prevent the installation from failing.

https://github.com/containers/toolbox/pull/717
2021-07-05 03:46:07 +02:00

12 lines
272 B
Meson

option(
'profile_dir',
description: 'Directory for profile.d files to be read by the shell on start-up',
type: 'string',
value: '/usr/share/profile.d'
)
option(
'tmpfiles_dir',
description: 'Directory for system-wide tmpfiles.d(5) files',
type: 'string',
)