Smake: Fix icon rendering by using correct application ID.
authorBen Pfaff <blp@cs.stanford.edu>
Fri, 24 Jun 2022 23:37:36 +0000 (16:37 -0700)
committerBen Pfaff <blp@cs.stanford.edu>
Fri, 24 Jun 2022 23:44:24 +0000 (16:44 -0700)
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

diff --git a/Smake b/Smake
index 4a6486010426bcfd5791f9c914ad3e6fa0706f3b..72c1d34f0b5a6cbc14e6875325fba62c25e68611 100644 (file)
--- a/Smake
+++ b/Smake
@@ -319,7 +319,7 @@ src/ui/gui/icons/manifest: $(MAKEFILE_LIST)
 src/ui/gui/resources.xml: $(MAKEFILE_LIST)
        printf '<?xml version="1.0" encoding="UTF-8"?>\n' > $@
        printf '<gresources>\n' >> $@
-       printf ' <gresource prefix="gnu/pspp">\n' >> $@
+       printf ' <gresource prefix="org/gnu/pspp">\n' >> $@
        for x in $(ICONS); do \
          z=`echo "$$x" | sed -e 's%src/ui/gui/%%'` ; \
          printf "  <file>$$z</file>\n" >> $@ ; \