From: Thomas Petazzoni Date: Sun, 19 Oct 2014 11:00:32 +0000 (+0200) Subject: avahi: fix indentation in AVAHI_INSTALL_INIT_SYSTEMD X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=d2fd9ef86ee096784c9b326004ba928a16d035ae;p=buildroot.git avahi: fix indentation in AVAHI_INSTALL_INIT_SYSTEMD The indentation for commands should be made with tabs, not spaces, so fix that up in AVAHI_INSTALL_INIT_SYSTEMD. Signed-off-by: Thomas Petazzoni --- diff --git a/package/avahi/avahi.mk b/package/avahi/avahi.mk index 3508002bb5..cafb2db968 100644 --- a/package/avahi/avahi.mk +++ b/package/avahi/avahi.mk @@ -164,19 +164,18 @@ endif ifeq ($(BR2_PACKAGE_AVAHI_DAEMON),y) define AVAHI_INSTALL_INIT_SYSTEMD - mkdir -p $(TARGET_DIR)/etc/systemd/system/multi-user.target.wants + mkdir -p $(TARGET_DIR)/etc/systemd/system/multi-user.target.wants - ln -fs /lib/systemd/system/avahi-daemon.service \ - $(TARGET_DIR)/etc/systemd/system/multi-user.target.wants/avahi-daemon.service + ln -fs /lib/systemd/system/avahi-daemon.service \ + $(TARGET_DIR)/etc/systemd/system/multi-user.target.wants/avahi-daemon.service - ln -fs /lib/systemd/system/avahi-dnsconfd.service \ - $(TARGET_DIR)/etc/systemd/system/multi-user.target.wants/avahi-dnsconfd.service + 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 + 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 define AVAHI_INSTALL_INIT_SYSV