From: Andrew Cooper Date: Fri, 18 Aug 2023 10:05:00 +0000 (+0100) Subject: rombios: Remove the use of egrep X-Git-Url: http://xenbits.xensource.com/gitweb?a=commitdiff_plain;h=e418a77295e6b512d212b57123c11e4d4fb23e8c;p=people%2Faperard%2Fxen-unstable.git rombios: Remove the use of egrep As the Alpine 3.18 container notes: egrep: warning: egrep is obsolescent; using grep -E Adjust it. Signed-off-by: Andrew Cooper Acked-by: Jan Beulich (cherry picked from commit 5ddac3c2852ecc120acab86fc403153a2097c5dc) --- diff --git a/tools/firmware/rombios/32bit/Makefile b/tools/firmware/rombios/32bit/Makefile index c058c71551..50d45647c2 100644 --- a/tools/firmware/rombios/32bit/Makefile +++ b/tools/firmware/rombios/32bit/Makefile @@ -26,7 +26,7 @@ $(TARGET): 32bitbios_all.o 32bitbios_all.o: 32bitbios.o tcgbios/tcgbiosext.o util.o pmm.o $(LD) $(LDFLAGS_DIRECT) -s -r $^ -o 32bitbios_all.o @nm 32bitbios_all.o | \ - egrep '^ +U ' >/dev/null && { \ + grep -E '^ +U ' >/dev/null && { \ echo "There are undefined symbols in the BIOS:"; \ nm -u 32bitbios_all.o; \ exit 11; \