From 0e0b84a5b32d39b482920412434530d7c4b6e709 Mon Sep 17 00:00:00 2001 From: Ben Pfaff Date: Thu, 31 Mar 2022 18:52:42 -0700 Subject: [PATCH] icons: Fix uninstall. The uninstall target for the icons looked for filenames that began with "pspp", but the new names for the application icons don't start that way. Fixes: 25e030629aed ("Rename icon files to match full application ID.") --- src/ui/gui/icons/automake.mk | 1 + 1 file changed, 1 insertion(+) diff --git a/src/ui/gui/icons/automake.mk b/src/ui/gui/icons/automake.mk index 2876f8a5c0..e0116ab73f 100644 --- a/src/ui/gui/icons/automake.mk +++ b/src/ui/gui/icons/automake.mk @@ -41,6 +41,7 @@ uninstall-ext-icons: (test ! "`printf '%s %s %s' . .. *`" = '. .. *' || test -f '*')) 2> /dev/null ; then \ rm -rf $(themedir)/$$size/$$context/application-x-spss-* ; \ rm -rf $(themedir)/$$size/$$context/pspp* ; \ + rm -rf $(themedir)/$$size/$$context/org.fsf.pspp*; \ fi ; \ done ; \ done -- 2.30.2