From 5edc76d31900d213c0fd2e2dbe680ea5dea422b0 Mon Sep 17 00:00:00 2001 From: David Griffith Date: Sun, 1 Jan 2023 15:17:56 -0800 Subject: [PATCH] Fixed faulty find for uninstall_xfrotz target. --- Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Makefile b/Makefile index 3d2bc45..f8985c8 100644 --- a/Makefile +++ b/Makefile @@ -691,7 +691,7 @@ uninstall_xfrotz: rm -f "$(X11_FONTDIR)/Zork_r400-16.pcf" rm -f "$(X11_FONTDIR)/Zork_r400-20.pcf" rm -f "$(X11_FONTDIR)/fonts.dir" - find $(X11_FONTDIR) -type d -depth -empty -exec rmdir "{}" \; + find $(X11_FONTDIR) -depth -type d -empty -exec rmdir "{}" \; install-sdl: install_sfrotz install_sdl: install_sfrotz -- 2.34.1