tools/automake: Revert "Do not use $(V) - force AM_V=1"
authorFredrik Olofsson <fredrik.olofsson@anyfinetworks.com>
Mon, 14 Oct 2019 07:01:57 +0000 (09:01 +0200)
committerPetr Štetiar <ynezz@true.cz>
Tue, 5 Nov 2019 23:21:15 +0000 (00:21 +0100)
commite6901bf902abbf5d009f9bc8b6e2e283ffd55113
tree5f2dec573e3638a69011588b8143231994dd5fe9
parent04d6753d03e3a6db07b7a2d3296774d0965bbbfa
tools/automake: Revert "Do not use $(V) - force AM_V=1"

This reverts commit 43365ca66253 ("Do not use $(V) - force AM_V=1") as
it breaks verbose output in automake packages, deviating from the
upstream and expected behaviour.

As you can see, neither make command outputs the expected verbose
compile command lines:

```
$ make package/mtd-utils/{clean,compile} V=sc
...
  CCLD     lsmtd
  CC       nand-utils/nanddump.o
  CCLD     nanddump
...
```
```
$ make -C build_dir/target*/mtd-utils-2.1.1 clean
...
$ make -C build_dir/target*/mtd-utils-2.1.1 V=1
...
  CC       lib/libmtd.o
  CC       lib/libfec.o
  CC       lib/common.o
  CC       lib/libcrc32.o
```

The original reason for this commit was some packages failing to build
if V is set to something other than 0 or 1. See the discussion in PR
https://github.com/openwrt/openwrt/pull/2481 for how to fix this in the
package Makefile.

Ref: PR#2481
Acked-by: Mirko Vogt <mirko-openwrt@nanl.de>
Signed-off-by: Fredrik Olofsson <fredrik.olofsson@anyfinetworks.com>
[commit title/description facelift]
Signed-off-by: Petr Štetiar <ynezz@true.cz>
tools/automake/patches/200-do-not-override-silent-rules.patch [deleted file]