From 44029220a5780f5a099e9bffe0cbcef8a4dc60ca Mon Sep 17 00:00:00 2001 From: Snider Date: Mon, 13 Oct 2025 17:46:31 +0100 Subject: [PATCH] Windows build fix. ensures STATIC=$(STATIC) is passed --- Makefile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Makefile b/Makefile index cdb474c5..85259941 100644 --- a/Makefile +++ b/Makefile @@ -73,12 +73,12 @@ SORTED_SDK_TARGETS :=$(sort $(SDK_TARGETS)) all: help testnet: - $(MAKE) configure TESTNET=1 + $(MAKE) configure TESTNET=1 STATIC=$(STATIC) CONAN_HOME=$(CONAN_CACHE) $(CONAN_EXECUTABLE) build . $(MAKE) package mainnet: - $(MAKE) configure TESTNET=0 + $(MAKE) configure TESTNET=0 STATIC=$(STATIC) CONAN_HOME=$(CONAN_CACHE) $(CONAN_EXECUTABLE) build . $(MAKE) package