aboutsummaryrefslogtreecommitdiff
path: root/tools/cmake2meson.py
diff options
context:
space:
mode:
Diffstat (limited to 'tools/cmake2meson.py')
-rwxr-xr-xtools/cmake2meson.py5
1 files changed, 3 insertions, 2 deletions
diff --git a/tools/cmake2meson.py b/tools/cmake2meson.py
index b108cf5..647d0c3 100755
--- a/tools/cmake2meson.py
+++ b/tools/cmake2meson.py
@@ -121,8 +121,9 @@ class Parser():
args.append(self.arguments())
self.expect('rparen')
arg = self.current
- if self.accept('string') or self.accept('varexp') or\
- self.accept('id'):
+ if self.accept('string') \
+ or self.accept('varexp') \
+ or self.accept('id'):
args.append(arg)
rest = self.arguments()
args += rest