]> git.ipfire.org Git - thirdparty/glibc.git/blobdiff - sysdeps/ia64/fpu/import_check
grep: egrep -> grep -E, fgrep -> grep -F
[thirdparty/glibc.git] / sysdeps / ia64 / fpu / import_check
index 21176f578deaa592078214c1bdcf9c615675087f..4303d2ff3741d66b4390a7ccd7fc3229e965dbac 100644 (file)
@@ -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