aboutsummaryrefslogtreecommitdiff
path: root/mesonbuild/dependencies
diff options
context:
space:
mode:
authorAlf Henrik Sauge <alf.henrik.sauge@gmail.com>2022-08-11 21:29:15 +0200
committerEli Schwartz <eschwartz93@gmail.com>2022-08-26 17:12:40 -0400
commit9ad5d0df4a3ad8dcc9d5d270b83894d3c60dd095 (patch)
treed3ceeee63057cb133d7b011b0540615ae688805b /mesonbuild/dependencies
parent06bf9a5cdae6a185a29e5ea5bcaf18ad3e3e042a (diff)
downloadmeson-9ad5d0df4a3ad8dcc9d5d270b83894d3c60dd095.zip
meson-9ad5d0df4a3ad8dcc9d5d270b83894d3c60dd095.tar.gz
meson-9ad5d0df4a3ad8dcc9d5d270b83894d3c60dd095.tar.bz2
Remove redundant backslash and fix white space issue
Diffstat (limited to 'mesonbuild/dependencies')
-rw-r--r--mesonbuild/dependencies/cmake.py9
1 files changed, 5 insertions, 4 deletions
diff --git a/mesonbuild/dependencies/cmake.py b/mesonbuild/dependencies/cmake.py
index 62d6ebf..f19efe2 100644
--- a/mesonbuild/dependencies/cmake.py
+++ b/mesonbuild/dependencies/cmake.py
@@ -548,10 +548,11 @@ class CMakeDependency(ExternalDependency):
self.found_modules += [i]
rtgt = resolve_cmake_trace_targets(i, self.traceparser, self.env,
- clib_compiler=self.clib_compiler,
- not_found_warning=lambda x: mlog.warning('CMake: Dependency', mlog.bold(x), 'for', mlog.bold(name), 'was not found')
- )
- incDirs += rtgt.include_directories
+ clib_compiler=self.clib_compiler,
+ not_found_warning=lambda x:
+ mlog.warning('CMake: Dependency', mlog.bold(x), 'for', mlog.bold(name), 'was not found')
+ )
+ incDirs += rtgt.include_directories
compileOptions += rtgt.public_compile_opts
libraries += rtgt.libraries + rtgt.link_flags