diff options
author | Carl Dong <contact@carldong.me> | 2021-02-25 18:16:07 -0500 |
---|---|---|
committer | Carl Dong <contact@carldong.me> | 2021-04-05 19:13:54 -0400 |
commit | 84912d4b24382ae022da3a863bd6caa2b8948d94 (patch) | |
tree | 7481d26c4913e6809aea6698bbc7164cc70699e6 /depends | |
parent | 0102f80b511307fe5b6d107e6c133b71940838ce (diff) |
build: Remove spaces from variable-printing rules
This simplifies parsing when using these rules from scripts.
Diffstat (limited to 'depends')
-rw-r--r-- | depends/Makefile | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/depends/Makefile b/depends/Makefile index dadb21515a..c5dfd1e8a7 100644 --- a/depends/Makefile +++ b/depends/Makefile @@ -2,7 +2,7 @@ # Pattern rule to print variables, e.g. make print-top_srcdir print-%: - @echo '$*' = '$($*)' + @echo '$*'='$($*)' # When invoking a sub-make, keep only the command line variable definitions # matching the pattern in the filter function. |