From b81769d1c86da504d5b7888bfa10e73ca484da59 Mon Sep 17 00:00:00 2001 From: PJB3005 Date: Thu, 9 Apr 2026 19:01:58 +0200 Subject: [PATCH] Make configure.py explicitly refuse since it's not needed anymore Avoid people getting confused if they try to run it. --- configure.py | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/configure.py b/configure.py index 313d24f55c..147b7150e7 100755 --- a/configure.py +++ b/configure.py @@ -1,5 +1,9 @@ #!/usr/bin/env python3 +print("You do not need to run configure.py for Dusk! This file is here to avoid conflicts with decomp.") +print("Use CMake to configure your build instead.") +exit(1) + ### # Generates build files for the project. # This file also includes the project configuration,