From 54786e2663840035f61840205735e16c0dbe5214 Mon Sep 17 00:00:00 2001 From: Colomban Wendling Date: Wed, 28 Jun 2023 15:18:47 +0200 Subject: Fix distribution of applet service files Fix distribution of the applet service files sources when building from an in-process-configured build. This fixes `make distcheck` and tarballs in builds configured with `--with-in-process-applets=all` (or actually any in-process applet). The issue was that the .service.in file was referenced indirectly in EXTRA_DIST, and the variable listed there was only filled in a conditional. Automake is not able to resolve this and see it still should distribute the reference of that variable, even if set conditionally. Fix this by always setting the variable properly, even if it's only used for out-of-process builds. --- applets/clock/Makefile.am | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'applets/clock/Makefile.am') diff --git a/applets/clock/Makefile.am b/applets/clock/Makefile.am index 55f94e93..c452fab9 100644 --- a/applets/clock/Makefile.am +++ b/applets/clock/Makefile.am @@ -138,9 +138,9 @@ $(applet_in_files): $(applet_in_files).in Makefile $(applet_DATA): $(applet_in_files) $(AM_V_GEN) $(MSGFMT) --desktop --keyword= --keyword=Name --keyword=Description --template $< -d $(top_srcdir)/po -o $@ +service_in_files = org.mate.panel.applet.ClockAppletFactory.service.in if !CLOCK_INPROCESS servicedir = $(datadir)/dbus-1/services -service_in_files = org.mate.panel.applet.ClockAppletFactory.service.in service_DATA = $(service_in_files:.service.in=.service) org.mate.panel.applet.ClockAppletFactory.service: $(service_in_files) -- cgit v1.2.1