Add back platform.machine to build-all path

This commit is contained in:
Thomas Krijnen
2021-10-24 12:10:15 +02:00
committed by GitHub
parent 14c0400f73
commit 40b112cd48
+1 -1
View File
@@ -137,7 +137,7 @@ IFCOS_NUM_BUILD_PROCS = os.getenv("IFCOS_NUM_BUILD_PROCS", multiprocessing.cpu_c
CMAKE_DIR = os.path.realpath(os.path.join("..", "cmake"))
path = ["..", "build", platform.system()]
path = ["..", "build", platform.system(), platform.machine()]
if TOOLSET:
path.append(TOOLSET)
DEFAULT_DEPS_DIR = os.path.realpath(os.path.join(*path))