From 1b04c517b377468b3b470d38607fb539187391dd Mon Sep 17 00:00:00 2001 From: Nico Huber Date: Sun, 13 Jun 2021 21:05:47 +0000 Subject: [PATCH] sed: Get rid of \+ This also turned out not to be part of POSIX Basic Regular Expressions. Change-Id: I8d567a53046cd4a557c87b383c5884ebb8e9e774 Signed-off-by: Nico Huber Reviewed-on: https://review.coreboot.org/c/libgfxinit/+/55468 Reviewed-by: Arthur Heymans --- common/Makefile.inc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/common/Makefile.inc b/common/Makefile.inc index b0b5a7b..7dda011 100644 --- a/common/Makefile.inc +++ b/common/Makefile.inc @@ -100,7 +100,7 @@ $(hw-gfx-gma-config-ads): $(dir)/hw-gfx-gma-config.ads.template $(cnf) $(foreach gen,$(_GEN_TLA_SUBSTITUTIONS), \ -e's/<$(gen)\(...\)*var>/$(_GEN_CONST_TARGET)/') \ -e's/\(.*: *.*:=\) *\(.*\);/\1\n (\2);/' \ - -e's/\([^ ]\+\) *: * \+\([^ ]*\) *:=/function \1 return \2 is/' \ + -e's/\([^ ][^ ]*\) *: * *\([^ ]*\) *:=/function \1 return \2 is/' \ -e's///' \ $< >$@ else