diff options
author | Baruch Siach <baruch@tkos.co.il> | 2014-12-02 08:58:49 +0200 |
---|---|---|
committer | Peter Korsgaard <peter@korsgaard.com> | 2014-12-02 09:39:14 +0100 |
commit | 6d1ab19be4b63c210eede7fef9ee61d1a9ddde3a (patch) | |
tree | 1321811c7e42a7211b493e9fd8487152ca4e9cc0 | |
parent | 649a6a64290ea214a034e5fb138d5c205eb44d98 (diff) | |
download | buildroot-6d1ab19be4b63c210eede7fef9ee61d1a9ddde3a.tar.gz buildroot-6d1ab19be4b63c210eede7fef9ee61d1a9ddde3a.zip |
ifplugd: remove spurious newline escape
Commit 5ad5d55924bcc (ifplugd: install configuration files unconditionally)
removed the conditional configuration file install, but left an redundant
newline escape, causing the following error:
package/ifplugd/ifplugd.mk:23: *** missing 'endef', unterminated 'define'. Stop.
Fix this.
Cc: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
Signed-off-by: Baruch Siach <baruch@tkos.co.il>
Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
-rw-r--r-- | package/ifplugd/ifplugd.mk | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/package/ifplugd/ifplugd.mk b/package/ifplugd/ifplugd.mk index 03ed8cdf33..6b6141e7b8 100644 --- a/package/ifplugd/ifplugd.mk +++ b/package/ifplugd/ifplugd.mk @@ -24,7 +24,7 @@ define IFPLUGD_INSTALL_FIXUP $(INSTALL) -D -m 0644 $(@D)/conf/ifplugd.conf $(TARGET_DIR)/etc/ifplugd/ifplugd.conf; \ $(SED) 's^\(ARGS=.*\)w^\1^' $(TARGET_DIR)/etc/ifplugd/ifplugd.conf; \ $(INSTALL) -D -m 0755 $(@D)/conf/ifplugd.action \ - $(TARGET_DIR)/etc/ifplugd/ifplugd.action ; \ + $(TARGET_DIR)/etc/ifplugd/ifplugd.action endef IFPLUGD_POST_INSTALL_TARGET_HOOKS += IFPLUGD_INSTALL_FIXUP |