diff options
author | Bernhard Reutner-Fischer <rep.dot.nop@gmail.com> | 2014-08-29 20:53:04 +0200 |
---|---|---|
committer | Bernhard Reutner-Fischer <rep.dot.nop@gmail.com> | 2014-08-29 20:53:04 +0200 |
commit | 61ae023e5bb93f05b2b30b31f299efc64bcd420e (patch) | |
tree | 216c96f1651537dd773a3598cea597e3d78f6ead | |
parent | 88041f133f06d81a9bf6c72fc6e41a604eddf4b8 (diff) |
buildsys: use SED for create-lds
Signed-off-by: Bernhard Reutner-Fischer <rep.dot.nop@gmail.com>
-rw-r--r-- | Makerules | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -303,7 +303,7 @@ define create-lds $(Q)$(CC) -nostdlib -nostartfiles -shared -Wl,-z,combreloc \ -Wl,-z,relro -Wl,--hash-style=gnu -Wl,-z,defs \ -Wl,--verbose 2>&1 | LC_ALL=C \ - sed -e '/^=========/,/^=========/!d;/^=========/d' \ + $(SED) -e '/^=========/,/^=========/!d;/^=========/d' \ -e 's/\. = .* + SIZEOF_HEADERS;/& $(SYMBOL_PREFIX)_begin = . - SIZEOF_HEADERS;/' > $@.lds endef |