diff options
| author | Konstantin Demin | 2018-03-05 09:46:44 +0000 |
|---|---|---|
| committer | Kevin Darbyshire-Bryant | 2018-09-24 14:57:27 +0000 |
| commit | d3b43f49acb38cbe364da8735c9617427edd3d81 (patch) | |
| tree | 1de97d571a2cede17eee1e4d90f10bcca34c2443 | |
| parent | 43d36606d668edf155da9d879110de2894df825a (diff) | |
| download | openwrt-d3b43f49acb38cbe364da8735c9617427edd3d81.tar.gz | |
rules.mk: add ESED command
ESED is SED with extended regular expressions turned on.
Command line and usage are the same as for SED.
Signed-off-by: Konstantin Demin <rockdrilla@gmail.com>
| -rw-r--r-- | rules.mk | 1 |
1 files changed, 1 insertions, 0 deletions
@@ -269,6 +269,7 @@ TARGET_CC:=$(TARGET_CROSS)gcc TARGET_CXX:=$(TARGET_CROSS)g++ KPATCH:=$(SCRIPT_DIR)/patch-kernel.sh SED:=$(STAGING_DIR_HOST)/bin/sed -i -e +ESED:=$(STAGING_DIR_HOST)/bin/sed -E -i -e CP:=cp -fpR LN:=ln -sf XARGS:=xargs -r |