From: Ben Pfaff Date: Fri, 24 Jun 2022 23:37:36 +0000 (-0700) Subject: Smake: Fix icon rendering by using correct application ID. X-Git-Url: https://pintos-os.org/cgi-bin/gitweb.cgi?p=pspp;a=commitdiff_plain;h=52ba15f3dce32b9977ae69ec2d50ce883e52eb0d 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.") --- 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" >> $@ ; \