style: fix E128 violations

E128: continuation line under-indented for visual indent

Signed-off-by: Igor Gnatenko <i.gnatenko.brain@gmail.com>
pull/1255/head
Igor Gnatenko 8 years ago committed by Jussi Pakkanen
parent ea570bcb67
commit 116da33cdd
  1. 9
      mesonbuild/environment.py
  2. 3
      mesonbuild/modules/gnome.py
  3. 4
      mesonbuild/scripts/gtkdochelper.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()

@ -580,8 +580,7 @@ can not be used with the current version of glib-compiled-resources, due to
'--subdir=' + state.subdir,
'--id=' + project_id,
'--installdir=' + os.path.join(state.environment.get_datadir(), 'help'),
'--sources=' + source_str,
]
'--sources=' + source_str]
if symlinks:
args.append('--symlinks=true')
if media:

@ -108,7 +108,9 @@ def build_gtkdoc(source_root, build_root, doc_subdir, src_subdirs,
if gobject_typesfile:
scanobjs_cmd = ['gtkdoc-scangobj'] + scanobjs_args + [gobject_typesfile,
'--module=' + module, '--cflags=' + cflags, '--ldflags=' + ldflags]
'--module=' + module,
'--cflags=' + cflags,
'--ldflags=' + ldflags]
gtkdoc_run_check(scanobjs_cmd, abs_out)

Loading…
Cancel
Save