summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authora1346054 <36859588+a1346054@users.noreply.github.com>2022-09-12 18:36:07 +0000
committerderf <derf@chaosdorf.de>2023-02-15 21:10:07 +0100
commit62cd7faa910cce5194b62aefb2ee933809940fc6 (patch)
tree548fbc12be16f201464ba095ab73b3a00bf59363
parentafca52d96eb43e6ceec4e6976b1f90c367df27c9 (diff)
Use `grep` instead of `fgrep`
No need to use `grep -F` here
-rw-r--r--Makefile2
1 files changed, 1 insertions, 1 deletions
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; \