Files
CMake/Source
Daniel Colascione 7f78bc42cb Makefile: Fix regression in .SILENT rule
Since commit d74e651b78 (Makefiles: Re-implement makefile target path
escaping and quoting, 2020-04-10, v3.18.0-rc1~334^2~1), `WriteMakeRule`
now correctly escapes `$` in make target paths as `$$`.  However, this
caused an existing call site to escape the `$(VERBOSE)` variable
reference in the `.SILENT` prefix, making it ineffective.  Sub-makefiles
are invoked with `MAKESILENT`, so this bug matters only for the `all`
target, which emits progress messages from toplevel.

Before:

    # Suppress display of executed commands.
    $$(VERBOSE).SILENT:

After:

    # Suppress display of executed commands.
    $(VERBOSE).SILENT:
2020-06-22 08:48:53 -04:00
..
2020-06-02 08:00:55 -04:00
2020-06-01 08:54:20 -04:00
2020-06-17 09:58:40 -04:00
2020-06-01 08:54:20 -04:00
2020-04-20 23:05:15 +02:00
2020-02-27 11:11:30 +01:00
2020-02-27 11:11:30 +01:00
2020-02-27 11:11:30 +01:00
2020-06-01 08:54:20 -04:00
2020-06-01 08:54:20 -04:00
2020-06-01 08:54:20 -04:00
2020-03-05 07:34:01 -05:00
2020-04-29 11:16:44 -04:00
2020-04-20 23:05:15 +02:00