diff options
author | Nirbheek Chauhan <nirbheek@centricular.com> | 2018-06-20 01:57:38 +0530 |
---|---|---|
committer | Nirbheek Chauhan <nirbheek.chauhan@gmail.com> | 2018-06-20 04:20:50 +0000 |
commit | ebda6ef9c801278bd15a6499c80fff26071feded (patch) | |
tree | fe41a228d33b2c5004785893091be5dd0512c45d | |
parent | 99dd5f34dece95e463a85c54034f685b9cb391e3 (diff) | |
download | meson-ebda6ef9c801278bd15a6499c80fff26071feded.zip meson-ebda6ef9c801278bd15a6499c80fff26071feded.tar.gz meson-ebda6ef9c801278bd15a6499c80fff26071feded.tar.bz2 |
ninjabackend: Obvious typo, missing space
I checked the original commit, and that space should not be there.
-rw-r--r-- | mesonbuild/backend/ninjabackend.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/mesonbuild/backend/ninjabackend.py b/mesonbuild/backend/ninjabackend.py index 9d72225..c32a482 100644 --- a/mesonbuild/backend/ninjabackend.py +++ b/mesonbuild/backend/ninjabackend.py @@ -1717,7 +1717,7 @@ rule FORTRAN_DEP_HACK%s if compiler.can_linker_accept_rsp(): command_template = ' command = {executable} @$out.rsp\n' \ ' rspfile = $out.rsp\n' \ - ' rspfile_content = $ARGS{cross_args} {output_args} {compile_only_args} $in\n' + ' rspfile_content = $ARGS {cross_args} {output_args} {compile_only_args} $in\n' else: command_template = ' command = {executable} $ARGS {cross_args} {output_args} {compile_only_args} $in\n' command = command_template.format( |