aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/project/boost/toolchain.py
diff options
context:
space:
mode:
authorEgor Tensin <Egor.Tensin@gmail.com>2021-03-20 18:08:30 +0300
committerEgor Tensin <Egor.Tensin@gmail.com>2021-03-20 18:08:30 +0300
commitfb12e2d2bba3d74d42108795bb682f1271f802c3 (patch)
treea3243564e1043a07228983aa93785ff828171176 /project/boost/toolchain.py
parentworkflows: fail-fast (diff)
downloadcmake-common-fb12e2d2bba3d74d42108795bb682f1271f802c3.tar.gz
cmake-common-fb12e2d2bba3d74d42108795bb682f1271f802c3.zip
project: minor refactoring
Diffstat (limited to 'project/boost/toolchain.py')
-rw-r--r--project/boost/toolchain.py3
1 files changed, 1 insertions, 2 deletions
diff --git a/project/boost/toolchain.py b/project/boost/toolchain.py
index 5422a62..f79cc17 100644
--- a/project/boost/toolchain.py
+++ b/project/boost/toolchain.py
@@ -234,8 +234,7 @@ class ConfigFile(Toolchain):
def b2_args(self, configuration):
# All the required options and the toolset definition should be in the
# user configuration file.
- args = []
- args += super().b2_args(configuration)
+ args = super().b2_args(configuration)
args.append(f'--user-config={self.config_path}')
args += self.toolset.b2_args()
return args