From 7df596a58cdfa763924487b8c275269de3497304 Mon Sep 17 00:00:00 2001 From: Sam James Date: Sun, 5 Jun 2022 12:09:02 -0700 Subject: grep: egrep -> grep -E, fgrep -> grep -F Newer versions of GNU grep (after grep 3.7, not inclusive) will warn on 'egrep' and 'fgrep' invocations. Convert usages within the tree to their expanded non-aliased counterparts to avoid irritating warnings during ./configure and the test suite. Signed-off-by: Sam James Reviewed-by: Fangrui Song --- sysdeps/ia64/fpu/import_check | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'sysdeps/ia64') diff --git a/sysdeps/ia64/fpu/import_check b/sysdeps/ia64/fpu/import_check index 21176f578d..4303d2ff37 100644 --- a/sysdeps/ia64/fpu/import_check +++ b/sysdeps/ia64/fpu/import_check @@ -41,14 +41,14 @@ check_file() { file=$1 size=$(readelf -S $file | \ (sz=0; while read line; do - if echo $line | fgrep -q " .rodata"; then + if echo $line | grep -F -q " .rodata"; then read sz rest break fi done; printf "%d" 0x$sz)) - summands=$(readelf -s $file | fgrep " OBJECT " | tr -s ' ' | + summands=$(readelf -s $file | grep -F " OBJECT " | tr -s ' ' | cut -f4 -d' ' | sed 's,$,+,')0 sum=$(($summands)) if [ $sum != $size ]; then -- cgit 1.4.1