aboutsummaryrefslogtreecommitdiff
path: root/mesonbuild/cmake
diff options
context:
space:
mode:
authorEli Schwartz <eschwartz@archlinux.org>2021-03-04 23:35:07 -0500
committerEli Schwartz <eschwartz@archlinux.org>2021-09-14 15:50:28 -0400
commitcdd0a1ddc8344e1a328af312d614b33a512aa3cd (patch)
treec654487fc1ef9c5b65a169261250969eccd6e476 /mesonbuild/cmake
parentfddf88ba08e4211b8793964efb0461725bdacd21 (diff)
downloadmeson-cdd0a1ddc8344e1a328af312d614b33a512aa3cd.zip
meson-cdd0a1ddc8344e1a328af312d614b33a512aa3cd.tar.gz
meson-cdd0a1ddc8344e1a328af312d614b33a512aa3cd.tar.bz2
semicolons are not needed in python
Diffstat (limited to 'mesonbuild/cmake')
-rw-r--r--mesonbuild/cmake/interpreter.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/mesonbuild/cmake/interpreter.py b/mesonbuild/cmake/interpreter.py
index aca8769..f41d2d9 100644
--- a/mesonbuild/cmake/interpreter.py
+++ b/mesonbuild/cmake/interpreter.py
@@ -379,7 +379,7 @@ class ConverterTarget:
cfgs += [x for x in tgt.properties['CONFIGURATIONS'] if x]
cfg = cfgs[0]
- is_debug = self.env.coredata.get_option(OptionKey('debug'));
+ is_debug = self.env.coredata.get_option(OptionKey('debug'))
if is_debug:
if 'DEBUG' in cfgs:
cfg = 'DEBUG'