aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/project/boost
diff options
context:
space:
mode:
Diffstat (limited to 'project/boost')
-rw-r--r--project/boost/build.py4
-rw-r--r--project/boost/directory.py2
-rw-r--r--project/boost/toolset.py (renamed from project/boost/toolchain.py)2
3 files changed, 4 insertions, 4 deletions
diff --git a/project/boost/build.py b/project/boost/build.py
index 32b355a..d1766ee 100644
--- a/project/boost/build.py
+++ b/project/boost/build.py
@@ -31,8 +31,8 @@ import sys
import tempfile
from project.boost.directory import BoostDir
-from project.toolchain import ToolchainType
-from project.boost.toolchain import Toolchain
+from project.toolset import ToolchainType
+from project.boost.toolset import Toolchain
from project.configuration import Configuration
from project.linkage import Linkage
from project.platform import Platform
diff --git a/project/boost/directory.py b/project/boost/directory.py
index 162562c..7c39383 100644
--- a/project/boost/directory.py
+++ b/project/boost/directory.py
@@ -6,7 +6,7 @@
import logging
import os.path
-from project.boost.toolchain import Toolchain
+from project.boost.toolset import Toolchain
from project.utils import cd, run
from project.os import on_windows
diff --git a/project/boost/toolchain.py b/project/boost/toolset.py
index 5fa2043..c59ef23 100644
--- a/project/boost/toolchain.py
+++ b/project/boost/toolset.py
@@ -13,7 +13,7 @@ import shutil
import project.mingw
import project.os
-from project.toolchain import ToolchainType
+from project.toolset import ToolchainType
from project.utils import temp_file