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.")
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" >> $@ ; \