From 96921cb237fef6f45b875532e376213b87ce8fcf Mon Sep 17 00:00:00 2001 From: Aetias Date: Sun, 16 Mar 2025 12:28:57 +0100 Subject: [PATCH] Fix `DSD` path --- tools/configure.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tools/configure.py b/tools/configure.py index 2824d4dd..6989472b 100755 --- a/tools/configure.py +++ b/tools/configure.py @@ -95,7 +95,7 @@ if platform is None: exit(1) EXE = platform.exe WINE = args.wine if platform.system != "windows" else "" -DSD = str(args.dsd) or os.path.join('.', str(root_path / f"dsd{EXE}")) +DSD = str(args.dsd or os.path.join('.', str(root_path / f"dsd{EXE}"))) OBJDIFF = os.path.join('.', str(root_path / f"objdiff-cli{EXE}")) CC = os.path.join('.', str(mwcc_path / "mwccarm.exe")) LD = os.path.join('.', str(mwcc_path / "mwldarm.exe"))