aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorChristoph Behle <behlec@gmail.com>2018-04-07 16:28:23 +0200
committerJussi Pakkanen <jpakkane@gmail.com>2018-04-08 01:04:44 +0300
commit40715dec21e83da22eacbdaebfbe9b8cb9de8aa4 (patch)
tree765bd48f106df67312c6569c858b1e33c0f93507
parent52eb5b195eec53c3117a2058e6f63e7d4c88447a (diff)
downloadmeson-40715dec21e83da22eacbdaebfbe9b8cb9de8aa4.zip
meson-40715dec21e83da22eacbdaebfbe9b8cb9de8aa4.tar.gz
meson-40715dec21e83da22eacbdaebfbe9b8cb9de8aa4.tar.bz2
Move entry in build_funct_dict to correct position.
The entry 'subdir_done' is now at its right place.
-rw-r--r--mesonbuild/interpreter.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/mesonbuild/interpreter.py b/mesonbuild/interpreter.py
index 88565af..e973c1e 100644
--- a/mesonbuild/interpreter.py
+++ b/mesonbuild/interpreter.py
@@ -1579,14 +1579,14 @@ class Interpreter(InterpreterBase):
'run_command': self.func_run_command,
'set_variable': self.func_set_variable,
'subdir': self.func_subdir,
+ 'subdir_done': self.func_subdir_done,
'subproject': self.func_subproject,
'shared_library': self.func_shared_lib,
'shared_module': self.func_shared_module,
'static_library': self.func_static_lib,
'both_libraries': self.func_both_lib,
'test': self.func_test,
- 'vcs_tag': self.func_vcs_tag,
- 'subdir_done': self.func_subdir_done,
+ 'vcs_tag': self.func_vcs_tag
})
if 'MESON_UNIT_TEST' in os.environ:
self.funcs.update({'exception': self.func_exception})