From b85613ab546356cc82e159581afbb9a6f9d1a938 Mon Sep 17 00:00:00 2001 From: Jerome Benoit Date: Mon, 30 Jun 2025 20:17:31 +0200 Subject: [PATCH] harden the make mahinery Harden the Make machiney by adding the option `-f` (`--force`) to `rm` at the `clean:` target of `scribbleres/Makefile`. This simple correction allows involved machineries (e.g., debhelp(7)) to work smoothly. --- scribbleres/Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/scribbleres/Makefile b/scribbleres/Makefile index f0cc578..f11216f 100644 --- a/scribbleres/Makefile +++ b/scribbleres/Makefile @@ -15,4 +15,4 @@ res_strings.cpp: strings/*.xml python3 embed.py --compress $^ > $@ clean: - rm res_icons.cpp res_strings.cpp + rm -f res_icons.cpp res_strings.cpp