diff options
author | DrDaveD <2129743+DrDaveD@users.noreply.github.com> | 2019-07-04 03:01:19 -0500 |
---|---|---|
committer | Nikolaus Rath <Nikolaus@rath.org> | 2019-07-04 09:02:30 +0100 |
commit | be8db96603631ea85bb82a39c77a5514cbc47348 (patch) | |
tree | bdf100b07123bdc340031442c88142a16788078f /meson_options.txt | |
parent | f0c52798b761280583379ba267b0ecc1ea34bbfc (diff) | |
download | libfuse-be8db96603631ea85bb82a39c77a5514cbc47348.tar.gz |
Add build option to skip steps requiring root permissions
Diffstat (limited to 'meson_options.txt')
-rw-r--r-- | meson_options.txt | 8 |
1 files changed, 6 insertions, 2 deletions
diff --git a/meson_options.txt b/meson_options.txt index c08e38e..8950ff1 100644 --- a/meson_options.txt +++ b/meson_options.txt @@ -5,7 +5,11 @@ option('udevrulesdir', type : 'string', value : '', description: 'Where to install udev rules (if empty, query pkg-config(1))') option('utils', type : 'boolean', value : true, - description: 'Wheter or not to build and install helper programs') + description: 'Whether or not to build and install helper programs') option('examples', type : 'boolean', value : true, - description: 'Wheter or not to build example programs')
\ No newline at end of file + description: 'Whether or not to build example programs') + +option('useroot', type : 'boolean', value : true, + description: 'Set owner and setuid bits on installed files') + |