diff options
author | Egor Tensin <Egor.Tensin@gmail.com> | 2021-05-07 10:22:29 +0300 |
---|---|---|
committer | Egor Tensin <Egor.Tensin@gmail.com> | 2021-05-07 10:31:23 +0300 |
commit | 47006871214c493e97037230b15bd9ac44194610 (patch) | |
tree | 605020a4b9d4615baa8006c52bf3199d91e1dec6 /project/boost/directory.py | |
parent | project.toolset: merge both other modules to this one (diff) | |
download | cmake-common-47006871214c493e97037230b15bd9ac44194610.tar.gz cmake-common-47006871214c493e97037230b15bd9ac44194610.zip |
project.toolset: refactoring
Diffstat (limited to '')
-rw-r--r-- | project/boost/directory.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/project/boost/directory.py b/project/boost/directory.py index fcb6fe6..4da58a7 100644 --- a/project/boost/directory.py +++ b/project/boost/directory.py @@ -54,8 +54,8 @@ class BoostDir: def _bootstrap_args(hint): toolset = Toolset.detect(hint) if on_windows(): - return toolset.get_bootstrap_bat_args() - return toolset.get_bootstrap_sh_args() + return toolset.bootstrap_bat_args() + return toolset.bootstrap_sh_args() @staticmethod def _b2_path(): |