We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent e6332b8 commit c614e50Copy full SHA for c614e50
mesonbuild/backend/backends.py
@@ -564,9 +564,7 @@ def get_executable_serialisation(
564
cmd_args: T.List[str] = []
565
for c in raw_cmd_args:
566
if isinstance(c, programs.ExternalProgram):
567
- p = c.get_path()
568
- assert isinstance(p, str)
569
- cmd_args.append(p)
+ cmd_args += c.get_command()
570
elif isinstance(c, (build.BuildTarget, build.CustomTarget)):
571
cmd_args.append(self.get_target_filename_abs(c))
572
elif isinstance(c, mesonlib.File):
0 commit comments