contrib: fix makedistcheck with disabled systemd

EXTRA_DIST files need to be distributed, no matter if the systemd option
is configured or not.

Change-Id: I2fed90915f57bbb054a26bacecf8417d6f3ba5ce
This commit is contained in:
Oliver Smith 2018-12-06 13:54:54 +01:00
parent 14512ddae8
commit 5edc9b2382
1 changed files with 4 additions and 1 deletions

View File

@ -1,8 +1,11 @@
EXTRA_DIST = \
osmo-pcap-client.service \
osmo-pcap-server.service
if HAVE_SYSTEMD
SYSTEMD_SERVICES = \
osmo-pcap-client.service \
osmo-pcap-server.service
EXTRA_DIST = $(SYSTEMD_SERVICES)
systemdsystemunit_DATA = $(SYSTEMD_SERVICES)
endif