aboutsummaryrefslogtreecommitdiff
path: root/mesonbuild/mconf.py
diff options
context:
space:
mode:
Diffstat (limited to 'mesonbuild/mconf.py')
-rw-r--r--mesonbuild/mconf.py22
1 files changed, 11 insertions, 11 deletions
diff --git a/mesonbuild/mconf.py b/mesonbuild/mconf.py
index d0f837d..28589da 100644
--- a/mesonbuild/mconf.py
+++ b/mesonbuild/mconf.py
@@ -115,21 +115,21 @@ class Conf:
print(' Source dir', self.build.environment.source_dir)
print(' Build dir ', self.build.environment.build_dir)
- dir_option_names = ['prefix',
- 'libdir',
- 'libexecdir',
- 'bindir',
- 'sbindir',
- 'includedir',
+ dir_option_names = ['bindir',
'datadir',
- 'mandir',
+ 'includedir',
'infodir',
+ 'libdir',
+ 'libexecdir',
'localedir',
- 'sysconfdir',
'localstatedir',
- 'sharedstatedir']
- test_option_names = ['stdsplit',
- 'errorlogs']
+ 'mandir',
+ 'prefix',
+ 'sbindir',
+ 'sharedstatedir',
+ 'sysconfdir']
+ test_option_names = ['errorlogs',
+ 'stdsplit']
core_option_names = [k for k in self.coredata.builtins if k not in dir_option_names + test_option_names]
dir_options = {k: o for k, o in self.coredata.builtins.items() if k in dir_option_names}