diff options
author | Jussi Pakkanen <jpakkane@gmail.com> | 2016-11-01 00:11:35 +0200 |
---|---|---|
committer | Jussi Pakkanen <jpakkane@gmail.com> | 2016-11-02 12:11:47 -0700 |
commit | e0034fd6a56a01aa8005ea5efd0473c337d90edc (patch) | |
tree | e6882d0a3146821e83874ddd00fa4f45597425e4 /mesonbuild/mconf.py | |
parent | 36a0d162cb65ee6470ed3d6b5e610de8f93b7a9d (diff) | |
download | meson-e0034fd6a56a01aa8005ea5efd0473c337d90edc.zip meson-e0034fd6a56a01aa8005ea5efd0473c337d90edc.tar.gz meson-e0034fd6a56a01aa8005ea5efd0473c337d90edc.tar.bz2 |
A few sysconf fixes.
Diffstat (limited to 'mesonbuild/mconf.py')
-rw-r--r-- | mesonbuild/mconf.py | 11 |
1 files changed, 10 insertions, 1 deletions
diff --git a/mesonbuild/mconf.py b/mesonbuild/mconf.py index 25f2c6b..4ef8d92 100644 --- a/mesonbuild/mconf.py +++ b/mesonbuild/mconf.py @@ -165,7 +165,16 @@ class Conf: print('') print('Directories:') parr = [] - for key in [ 'prefix', 'libdir', 'libexecdir', 'bindir', 'includedir', 'datadir', 'mandir', 'localedir' ]: + for key in ['prefix', + 'libdir', + 'libexecdir', + 'bindir', + 'includedir', + 'datadir', + 'mandir', + 'localedir', + 'sysconfdir', + ]: parr.append([key, coredata.get_builtin_option_description(key), self.coredata.get_builtin_option(key), coredata.get_builtin_option_choices(key)]) self.print_aligned(parr) |