From bf99fe82871cbdca053307368e3c9738deb2463d Mon Sep 17 00:00:00 2001
From: Mike Gabriel <mike.gabriel@das-netzwerkteam.de>
Date: Sun, 23 Oct 2022 00:38:23 +0200
Subject: [PATCH 5/8] src/Makefile: Also clean-up src/__pycache__/ if it
 exists.

Signed-off-by: Mike Gabriel <mike.gabriel@das-netzwerkteam.de>
---
 src/Makefile | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/src/Makefile b/src/Makefile
index 17ac436..7b2e02e 100644
--- a/src/Makefile
+++ b/src/Makefile
@@ -23,7 +23,7 @@ install-lib:
 
 .PHONY: clean
 clean:
-	rm -rf build ctest pam_python.so test-pam_$(PYTHON).pam test.pyc core
+	rm -rf build ctest pam_python.so test-pam_$(PYTHON).pam test.pyc core __pycache__
 	[ ! -e /etc/pam.d/test-pam_$(PYTHON).pam ] || { s=$$([ $$(id -u) = 0 ] || echo sudo); $$s rm -f /etc/pam.d/test-pam_$(PYTHON).pam; }
 	[ ! -e /etc/pam.d/test-pam_$(PYTHON)-installed.pam ] || { s=$$([ $$(id -u) = 0 ] || echo sudo); $$s rm -f /etc/pam.d/test-pam_$(PYTHON)-installed.pam; }
 
-- 
2.30.2

