summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMichael Olbrich <m.olbrich@pengutronix.de>2016-07-22 18:20:22 +0200
committerMichael Olbrich <m.olbrich@pengutronix.de>2016-07-23 09:26:10 +0200
commit3e3ae4b3333a30275bbac8b81a114ecae8299314 (patch)
treee94f86bdc812e5b57e06faefe906f2cdda223647
parente6d1421c09134857cb3aef1e0c64c889776fcffc (diff)
downloadptxdist-3e3ae4b3333a30275bbac8b81a114ecae8299314.tar.gz
ptxdist-3e3ae4b3333a30275bbac8b81a114ecae8299314.tar.xz
host-fakeroot: fix sed arguments
'-i' has an optional argument: a backup suffix. It was never noticed because '-e' is optional for a single regex. Signed-off-by: Michael Olbrich <m.olbrich@pengutronix.de>
-rw-r--r--rules/host-fakeroot.make2
1 files changed, 1 insertions, 1 deletions
diff --git a/rules/host-fakeroot.make b/rules/host-fakeroot.make
index 00e3e0dd9..90acc2ab8 100644
--- a/rules/host-fakeroot.make
+++ b/rules/host-fakeroot.make
@@ -47,7 +47,7 @@ HOST_FAKEROOT_CONF_OPT := \
$(STATEDIR)/host-fakeroot.install.post:
@$(call targetinfo)
@$(call world/install.post, HOST_FAKEROOT)
- @sed -ie 's,FAKEROOT_SYSROOT,$(PTXCONF_SYSROOT_HOST),' \
+ @sed -i -e 's,FAKEROOT_SYSROOT,$(PTXCONF_SYSROOT_HOST),' \
$(PTXCONF_SYSROOT_HOST)/bin/fakeroot
@$(call touch)