diff options
author | Igor Gnatenko <i.gnatenko.brain@gmail.com> | 2016-12-31 20:12:24 +0100 |
---|---|---|
committer | Jussi Pakkanen <jpakkane@gmail.com> | 2017-01-01 12:02:05 -0500 |
commit | ea570bcb6704629a4a503548865a8dc19c872a39 (patch) | |
tree | 030b348fff7aab035fbbbf1afb589ae7b15b1c4c /mesonbuild/compilers.py | |
parent | f19bec34a911f4c67cfb0dc3d87794b57b6b49e3 (diff) | |
download | meson-ea570bcb6704629a4a503548865a8dc19c872a39.zip meson-ea570bcb6704629a4a503548865a8dc19c872a39.tar.gz meson-ea570bcb6704629a4a503548865a8dc19c872a39.tar.bz2 |
style: fix E265 violations
E265: block comment should start with '# '
Signed-off-by: Igor Gnatenko <i.gnatenko.brain@gmail.com>
Diffstat (limited to 'mesonbuild/compilers.py')
-rw-r--r-- | mesonbuild/compilers.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/mesonbuild/compilers.py b/mesonbuild/compilers.py index a194277..c885afe 100644 --- a/mesonbuild/compilers.py +++ b/mesonbuild/compilers.py @@ -2446,7 +2446,7 @@ end program prog def get_dependency_gen_args(self, outtarget, outfile): # Disabled until this is fixed: # https://gcc.gnu.org/bugzilla/show_bug.cgi?id=62162 - #return ['-cpp', '-MMD', '-MQ', outtarget] + # return ['-cpp', '-MMD', '-MQ', outtarget] return [] def get_output_args(self, target): |