Makefile: fix stray \ warnings with grep-3.8
authorNick Hainke <vincent@systemli.org>
Sun, 11 Sep 2022 06:15:52 +0000 (08:15 +0200)
committerChristian Marangi <ansuelsmth@gmail.com>
Tue, 27 Sep 2022 14:45:08 +0000 (16:45 +0200)
commita29d3bc48c40c6a2a93ae1806bea2ac26455cdbb
tree20c41b1a2a1ebd130584a9612f4f5b2b77367810
parentfcaea8b55135ef5db4d7c66230b8a5c4cb263991
Makefile: fix stray \ warnings with grep-3.8

We simply grep for "/usr". So no need for "-E" or "\/". Furthermore, in
the new grep versions this creates warnings.

As written in the grep-3.8 announcement:
  Regular expressions with stray backslashes now cause warnings, as
  their unspecified behavior can lead to unexpected results.
  For example, '\a' and 'a' are not always equivalent
  <https://bugs.gnu.org/39678>.

Fixes warnings in the form of:
  grep: warning: stray \ before /

Signed-off-by: Nick Hainke <vincent@systemli.org>
Makefile