From e91c60ea66e1e3f52bfb38a9051d10c9a5e188ea Mon Sep 17 00:00:00 2001 From: Rebecca Kelly Date: Sat, 4 Sep 2021 08:49:43 -0400 Subject: [PATCH] use `grep -F` instead of `fgrep` --- Makefile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Makefile b/Makefile index c820bca..45c62d5 100644 --- a/Makefile +++ b/Makefile @@ -3,5 +3,5 @@ all: fontforge -lang=py -script build.py 2>&1 \ - | fgrep -v 'This contextual rule applies no lookups.' \ - | fgrep -v 'Bad device table' + | grep -Fv 'This contextual rule applies no lookups.' \ + | grep -Fv 'Bad device table'