GNOME Bugzilla – Bug 783986
Appdata.xml file is no longer being installed
Last modified: 2017-06-20 10:36:17 UTC
I just packaged up gnome-calculator 3.25.3 and have seen that /usr/share/appdata/org.gnome.Calculator.appdata.xml is no longer being installed This seems to be a fallout of https://git.gnome.org/browse/gnome-calculator/commit/?id=800ccb84cc9d2500204e22d42fd84d2462309f3d Looking into Makefile.in (the one generated by autoconf), one sees: > appdata_in_files = org.gnome.Calculator.appdata.xml.in and then further down, translated from @APPSTREAM_XML_RULES@ >$(appstream_XML): $(appstream_in_files) > $(AM_V_GEN) $(MSGFMT) --xml --template $< -d $(top_srcdir)/po -o $@ And there the variable name does not match to the earlier definition
Created attachment 354089 [details] [review] Fix appdata.xml installation With the migration away from libtool to using APPSTREAM_XML_RULES (commit 800ccb84c) some variables were not adjusted.
Silly me, I saw that appdata.xml in git unstaged, and didn't think about the reason. THanks for spotting this.
Thanks for the patch. Attachment 354089 [details] pushed as 60f3a35 - Fix appdata.xml installation