diff options
author | a1346054 <36859588+a1346054@users.noreply.github.com> | 2022-09-12 18:36:07 +0000 |
---|---|---|
committer | derf <derf@chaosdorf.de> | 2023-02-15 21:10:07 +0100 |
commit | 62cd7faa910cce5194b62aefb2ee933809940fc6 (patch) | |
tree | 548fbc12be16f201464ba095ab73b3a00bf59363 /Makefile | |
parent | afca52d96eb43e6ceec4e6976b1f90c367df27c9 (diff) |
Use `grep` instead of `fgrep`
No need to use `grep -F` here
Diffstat (limited to 'Makefile')
-rw-r--r-- | Makefile | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -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; \ |