From 62cd7faa910cce5194b62aefb2ee933809940fc6 Mon Sep 17 00:00:00 2001 From: a1346054 <36859588+a1346054@users.noreply.github.com> Date: Mon, 12 Sep 2022 18:36:07 +0000 Subject: Use `grep` instead of `fgrep` No need to use `grep -F` here --- Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Makefile b/Makefile index b232574..1e7e4e5 100644 --- a/Makefile +++ b/Makefile @@ -12,7 +12,7 @@ build-applications: @${MAKE} -C share/applications test: all - @if ! uname -m | fgrep -q -e arm -e mips; then \ + @if ! uname -m | grep -q -e arm -e mips; then \ PACKAGE=${PACKAGE} prove test/feh.t test/mandoc.t; \ else \ PACKAGE=${PACKAGE} prove test/feh.t test/mandoc.t || cat test/imlib2-bug-notice; \ -- cgit v1.2.3