Makefile: use $(Q) instead of @ to silence target-finalize commands
authorYann E. MORIN <yann.morin.1998@free.fr>
Sat, 29 Aug 2020 12:56:38 +0000 (14:56 +0200)
committerPeter Korsgaard <peter@korsgaard.com>
Sat, 29 Aug 2020 16:28:27 +0000 (18:28 +0200)
commit5754d9c9b17189d05e7436143a46098fdfeae762
tree9b85657fa53960b752bb32230d1a78eb033775c8
parent532fe9fb5788b0b2a2f25b2fd72e63f7c8c490d6
Makefile: use $(Q) instead of @ to silence target-finalize commands

As 18f6c26118 just did to silence the file lists commands, switch to
using $(Q) instead of a plain @, to silence the commands.

Using $(Q) will allow to debug the commands with V=1.

We keep @ for the calls to MESSAGE, though.

The commands that are not currently silenced are left as-is, and they
can be converted to being silent in a followup patch, if need be,

Signed-off-by: Yann E. MORIN <yann.morin.1998@free.fr>
Cc: Thomas Petazzoni <thomas.petazzoni@bootlin.com>
Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
Makefile