From: Ray Strode Date: Tue, 10 Jul 2012 14:16:29 +0000 (-0400) Subject: systemd: unfoul up Makefile X-Git-Tag: 0.8.6.1~1 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=d7aa800c391cc771680ce0886fd669c784b8a37a;p=thirdparty%2Fplymouth.git systemd: unfoul up Makefile The previous systemd commit introduced a file named systemd-ask-password-plymouth.path.in The makefile was only looking for .service.in files when stripping the .in suffix, so it got installed incorrectly. This commit fixes up the Makefile. --- diff --git a/systemd-units/Makefile.am b/systemd-units/Makefile.am index 16d132ce..1545a043 100644 --- a/systemd-units/Makefile.am +++ b/systemd-units/Makefile.am @@ -12,7 +12,7 @@ systemd_unit_templates = \ if ENABLE_SYSTEMD_INTEGRATION systemdunitdir=$(SYSTEMD_UNIT_DIR) -systemdunit_DATA = $(systemd_unit_templates:.service.in=.service) +systemdunit_DATA = $(systemd_unit_templates:.in=) endif EXTRA_DIST = $(systemd_unit_templates) $(systemdunit_DATA)