From 5a69a0816934044dfa9ea152732e029d2b3f2d2b Mon Sep 17 00:00:00 2001 From: Aetias Date: Sat, 15 Mar 2025 16:42:04 +0100 Subject: [PATCH] Use `--dsd` path correctly --- tools/configure.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tools/configure.py b/tools/configure.py index d8681804..df5996d8 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 = os.path.join('.', str(root_path / f"dsd{EXE}")) +DSD = 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"))