diff options
author | Jussi Pakkanen <jpakkane@gmail.com> | 2016-08-21 13:22:19 +0300 |
---|---|---|
committer | GitHub <noreply@github.com> | 2016-08-21 13:22:19 +0300 |
commit | 399d65380394556ba5cd1c2a3b364f891d095bfe (patch) | |
tree | 39192e313c0108ef43bef8ae2331ffe8b08dc8ce /mesonbuild/optinterpreter.py | |
parent | 5a926172e6e7870574585b5fe742fcf3e48b4398 (diff) | |
parent | 309f7a1b4a7179f44f53b75736b7cd6030f9f40d (diff) | |
download | meson-399d65380394556ba5cd1c2a3b364f891d095bfe.zip meson-399d65380394556ba5cd1c2a3b364f891d095bfe.tar.gz meson-399d65380394556ba5cd1c2a3b364f891d095bfe.tar.bz2 |
Merge pull request #685 from ximion/master
Implement D support
Diffstat (limited to 'mesonbuild/optinterpreter.py')
-rw-r--r-- | mesonbuild/optinterpreter.py | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/mesonbuild/optinterpreter.py b/mesonbuild/optinterpreter.py index 409f9dc..e38bdb9 100644 --- a/mesonbuild/optinterpreter.py +++ b/mesonbuild/optinterpreter.py @@ -20,6 +20,7 @@ import os, re forbidden_option_names = coredata.get_builtin_options() forbidden_prefixes = {'c_': True, 'cpp_': True, + 'd_': True, 'rust_': True, 'fortran_': True, 'objc_': True, |