From 52ba15f3dce32b9977ae69ec2d50ce883e52eb0d Mon Sep 17 00:00:00 2001 From: Ben Pfaff Date: Fri, 24 Jun 2022 16:37:36 -0700 Subject: [PATCH] Smake: Fix icon rendering by using correct application ID. PSPP-specific icons were not showing up properly in the GUI because the compiled-in resources were looking in gnu.pspp whereas the name is now org.gnu.pspp. This fixes the problem. Fixes: a421d8d9f61b ("Change application ID from org.fsf.pspp to org.gnu.pspp.") --- Smake | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Smake b/Smake index 4a64860104..72c1d34f0b 100644 --- a/Smake +++ b/Smake @@ -319,7 +319,7 @@ src/ui/gui/icons/manifest: $(MAKEFILE_LIST) src/ui/gui/resources.xml: $(MAKEFILE_LIST) printf '\n' > $@ printf '\n' >> $@ - printf ' \n' >> $@ + printf ' \n' >> $@ for x in $(ICONS); do \ z=`echo "$$x" | sed -e 's%src/ui/gui/%%'` ; \ printf " $$z\n" >> $@ ; \ -- 2.30.2