From 7b94f04a466256e5af937764380559612927291e Mon Sep 17 00:00:00 2001
From: Albert Graef <aggraef@gmail.com>
Date: Wed, 16 Nov 2022 10:47:07 +0100
Subject: [PATCH] Get rid of the python2 build dependency.

Python 2 has been EOL since 2019, and isn't available in the Arch
repositories any more, so continuing to support it has become a major
hassle. The quick and dirty fix is to just build the DISIS cwiid library
without it, which seems to be the only part of the source which still
depends on Python 2 at build time.
---
 externals/Makefile | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/externals/Makefile b/externals/Makefile
index f781fe1a2..204fa84c3 100644
--- a/externals/Makefile
+++ b/externals/Makefile
@@ -494,7 +494,7 @@ disis:
 ifneq ($(OS_NAME),windows)
 ifneq ($(OS_NAME),darwin)
 	cd $(externals_src)/disis/cwiid && aclocal && autoconf && \
-		./configure --with-python=python2 && make
+		./configure --without-python && make
 endif
 endif
 	make -C $(externals_src)/disis PD_PATH=$(pd_src) pdbinpath=$(pd_src)/src CFLAGS="$(CFLAGS_ADD)"
-- 
GitLab