Commit 6c947771 authored by Thomas Petazzoni's avatar Thomas Petazzoni
Browse files

avahi: remove useless 'mkdir -p' in AVAHI_INSTALL_INIT_SYSTEMD



In AVAHI_INSTALL_INIT_SYSTEMD, since we're using 'install -D' to
install /usr/lib/tmpfiles.d/avahi.conf in $(TARGET_DIR), there's no
need to have a 'mkdir -p' before that, since 'install -D' creates the
directories as needed.

Signed-off-by: default avatarThomas Petazzoni <thomas.petazzoni@free-electrons.com>
parent d2fd9ef8
Loading
Loading
Loading
Loading
+0 −2
Original line number Diff line number Diff line
@@ -172,8 +172,6 @@ define AVAHI_INSTALL_INIT_SYSTEMD
	ln -fs /lib/systemd/system/avahi-dnsconfd.service \
		$(TARGET_DIR)/etc/systemd/system/multi-user.target.wants/avahi-dnsconfd.service

	mkdir -p $(TARGET_DIR)/usr/lib/tmpfiles.d

	$(INSTALL) -D -m 644 package/avahi/avahi_tmpfiles.conf \
		$(TARGET_DIR)/usr/lib/tmpfiles.d/avahi.conf
endef