client/Makefile.am broken syntax with gtk4-client enabled
While I've not seen build to fail, it seems to me that client/Makefile.am is broken when gtk4-client is enabled.
if CLIENT_GUI_GTK_4 gtk4_menus.xml endif
should be
if CLIENT_GUI_GTK_4 CLIENT_FILES += gtk4_menus.xml endif
While I've not seen build to fail, it seems to me that client/Makefile.am is broken when gtk4-client is enabled.
if CLIENT_GUI_GTK_4
gtk4_menus.xml
endif
should be
if CLIENT_GUI_GTK_4
CLIENT_FILES += gtk4_menus.xml
endif