diff options
author | Igor Gnatenko <i.gnatenko.brain@gmail.com> | 2016-12-31 20:19:38 +0100 |
---|---|---|
committer | Jussi Pakkanen <jpakkane@gmail.com> | 2017-01-01 12:02:05 -0500 |
commit | 116da33cddeb1793329ddefcc0e6db74679931f2 (patch) | |
tree | e373c9cf07b74ac5a8d7c97212377860cb60ca3b /mesonbuild/environment.py | |
parent | ea570bcb6704629a4a503548865a8dc19c872a39 (diff) | |
download | meson-116da33cddeb1793329ddefcc0e6db74679931f2.zip meson-116da33cddeb1793329ddefcc0e6db74679931f2.tar.gz meson-116da33cddeb1793329ddefcc0e6db74679931f2.tar.bz2 |
style: fix E128 violations
E128: continuation line under-indented for visual indent
Signed-off-by: Igor Gnatenko <i.gnatenko.brain@gmail.com>
Diffstat (limited to 'mesonbuild/environment.py')
-rw-r--r-- | mesonbuild/environment.py | 9 |
1 files changed, 6 insertions, 3 deletions
diff --git a/mesonbuild/environment.py b/mesonbuild/environment.py index 412242a..b6f12fa 100644 --- a/mesonbuild/environment.py +++ b/mesonbuild/environment.py @@ -793,9 +793,12 @@ def get_args_from_envvars(compiler): return ([], []) # Compile flags - cflags_mapping = {'c': 'CFLAGS', 'cpp': 'CXXFLAGS', - 'objc': 'OBJCFLAGS', 'objcpp': 'OBJCXXFLAGS', - 'fortran': 'FFLAGS', 'd': 'DFLAGS'} + cflags_mapping = {'c': 'CFLAGS', + 'cpp': 'CXXFLAGS', + 'objc': 'OBJCFLAGS', + 'objcpp': 'OBJCXXFLAGS', + 'fortran': 'FFLAGS', + 'd': 'DFLAGS'} compile_flags = os.environ.get(cflags_mapping[lang], '') log_var(cflags_mapping[lang], compile_flags) compile_flags = compile_flags.split() |