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.
This commit is contained in:
Ray Strode 2012-07-10 10:16:29 -04:00
parent 5039ab6866
commit d7aa800c39

View 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)