diff options
author | Benjamin Redelings <benjamin.redelings@gmail.com> | 2017-12-23 13:29:15 -0800 |
---|---|---|
committer | Benjamin Redelings <benjamin.redelings@gmail.com> | 2017-12-23 13:29:15 -0800 |
commit | f3c182f07d7ad0fa1a0714b15fe2633950e81578 (patch) | |
tree | 756dac894457eaf1bb5a41dc2477a88bbae00395 /mesonbuild/compilers/compilers.py | |
parent | 907744d55e224f21d45d1dfac852db20de7d5532 (diff) | |
download | meson-f3c182f07d7ad0fa1a0714b15fe2633950e81578.zip meson-f3c182f07d7ad0fa1a0714b15fe2633950e81578.tar.gz meson-f3c182f07d7ad0fa1a0714b15fe2633950e81578.tar.bz2 |
Add whitespace around '+'.
Diffstat (limited to 'mesonbuild/compilers/compilers.py')
-rw-r--r-- | mesonbuild/compilers/compilers.py | 2 |
1 files changed, 1 insertions, 1 deletions
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 |