]> git.ipfire.org Git - thirdparty/plymouth.git/commitdiff
systemd: unfoul up Makefile
authorRay Strode <rstrode@redhat.com>
Tue, 10 Jul 2012 14:16:29 +0000 (10:16 -0400)
committerRay Strode <rstrode@redhat.com>
Tue, 10 Jul 2012 14:17:50 +0000 (10:17 -0400)
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.

systemd-units/Makefile.am

index 16d132ce6420262226d7f6529be31a3c9443b4db..1545a04399338cf8e7d6800574af864d5af87d63 100644 (file)
@@ -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)