From 40b112cd482e92386978bf713f53c617fb5b508a Mon Sep 17 00:00:00 2001 From: Thomas Krijnen Date: Sun, 24 Oct 2021 12:10:15 +0200 Subject: [PATCH] Add back platform.machine to build-all path --- nix/build-all.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/nix/build-all.py b/nix/build-all.py index 3f4f73bb8a..4644344ccb 100644 --- a/nix/build-all.py +++ b/nix/build-all.py @@ -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))