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>
Thu, 29 Sep 2022 17:37:35 +0000 (19:37 +0200)
commit463fe05d9e6e2cd2b08573db325105ce132eff24
tree96444728bc75a411400a30e41c6f24407a965fb0
parent25d8b9cad6f141104a1065880efe21b8c292d8c6
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>
(cherry picked from commit a29d3bc48c40c6a2a93ae1806bea2ac26455cdbb)
[ fix conflict error ]
Signed-off-by: Christian Marangi <ansuelsmth@gmail.com>
Makefile