diff options
author | Mike Sinkovsky <msink@permonline.ru> | 2017-01-09 15:14:24 +0500 |
---|---|---|
committer | Jussi Pakkanen <jpakkane@gmail.com> | 2017-01-11 12:33:27 -0500 |
commit | 5b626ab4cb8ee6024394945e716e3a5426216260 (patch) | |
tree | 4db6f656f69906e9f00c97a938a8da17548b7282 /mesonbuild/dependencies.py | |
parent | 0dd1e338989c4d0517eab8efbfa008e0e3e841a9 (diff) | |
download | meson-5b626ab4cb8ee6024394945e716e3a5426216260.zip meson-5b626ab4cb8ee6024394945e716e3a5426216260.tar.gz meson-5b626ab4cb8ee6024394945e716e3a5426216260.tar.bz2 |
style: [E1**] Indentation
Diffstat (limited to 'mesonbuild/dependencies.py')
-rw-r--r-- | mesonbuild/dependencies.py | 8 |
1 files changed, 5 insertions, 3 deletions
diff --git a/mesonbuild/dependencies.py b/mesonbuild/dependencies.py index 976adf0..e77abb8 100644 --- a/mesonbuild/dependencies.py +++ b/mesonbuild/dependencies.py @@ -1109,9 +1109,11 @@ why. As a hack filter out everything that is not a flag.""" as -O2 and so on. Drop everything that is not needed.""" result = [] for f in args: - if f.startswith('-D') or f.startswith('-f') or \ - f.startswith('-I') or f == '-pthread' or\ - (f.startswith('-W') and not f == '-Wall'): + if f.startswith('-D') \ + or f.startswith('-f') \ + or f.startswith('-I') \ + or f == '-pthread' \ + or (f.startswith('-W') and not f == '-Wall'): result.append(f) return result |