aboutsummaryrefslogtreecommitdiff
path: root/mesonbuild/compilers/d.py
diff options
context:
space:
mode:
authorMatthias Klumpp <matthias@tenstral.net>2017-09-12 14:29:23 +0200
committerMatthias Klumpp <matthias@tenstral.net>2017-09-12 17:32:03 +0200
commit6cd3f066b4c4e9ffbe7c8af6a183a6ebe39925dc (patch)
tree4f27c3d8dc22fdfdf5659f09405ed35dcc5b9e21 /mesonbuild/compilers/d.py
parentd83c2894428104188cd5f75565ee7bd2b4fdcd54 (diff)
downloadmeson-6cd3f066b4c4e9ffbe7c8af6a183a6ebe39925dc.zip
meson-6cd3f066b4c4e9ffbe7c8af6a183a6ebe39925dc.tar.gz
meson-6cd3f066b4c4e9ffbe7c8af6a183a6ebe39925dc.tar.bz2
d: Implement specific properties for D features
Diffstat (limited to 'mesonbuild/compilers/d.py')
-rw-r--r--mesonbuild/compilers/d.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/mesonbuild/compilers/d.py b/mesonbuild/compilers/d.py
index 7fc21cc..9739f28 100644
--- a/mesonbuild/compilers/d.py
+++ b/mesonbuild/compilers/d.py
@@ -93,7 +93,7 @@ class DCompiler(Compiler):
# FIXME: Make this work for Windows, MacOS and cross-compiling
return get_gcc_soname_args(GCC_STANDARD, prefix, shlib_name, suffix, path, soversion, is_shared_module)
- def get_feature_args(self, args, kwargs):
+ def get_feature_args(self, kwargs):
res = []
if 'unittest' in kwargs:
unittest = kwargs.pop('unittest')