From f3c182f07d7ad0fa1a0714b15fe2633950e81578 Mon Sep 17 00:00:00 2001 From: Benjamin Redelings Date: Sat, 23 Dec 2017 13:29:15 -0800 Subject: Add whitespace around '+'. --- mesonbuild/compilers/compilers.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'mesonbuild/compilers/compilers.py') diff --git a/mesonbuild/compilers/compilers.py b/mesonbuild/compilers/compilers.py index ba76fad..24ae3c9 100644 --- a/mesonbuild/compilers/compilers.py +++ b/mesonbuild/compilers/compilers.py @@ -868,7 +868,7 @@ class Compiler: # This eats the next argument, which happens to be 'ldstdc++', causing link failures. # We can dodge this problem by not adding any rpath_paths if the argument is empty. if lpaths.strip() != '': - args += ['-Wl,-rpath-link,'+lpaths] + args += ['-Wl,-rpath-link,' + lpaths] return args -- cgit v1.1