Skip to content

Commit 05b8b82

Browse files
avargitster
authored andcommitted
Makefile: use ' ', not non-existing $(wspfx_SQ)
Change the use of a non-existing variable added in my 0b6d0bc (Makefiles: add and use wildcard "mkdir -p" template, 2022-03-03) to use the hardcoded whitespace padding for "QUIET" rules instead. The wspfx_SQ was left from an earlier (rebased out) commit preceding 0b6d0bc[1]. 1. https://lore.kernel.org/git/[email protected]/ Signed-off-by: Ævar Arnfjörð Bjarmason <[email protected]> Signed-off-by: Junio C Hamano <[email protected]>
1 parent 0b6d0bc commit 05b8b82

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

shared.mak

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -53,7 +53,7 @@ ifndef V
5353
QUIET = @
5454
QUIET_GEN = @echo ' ' GEN $@;
5555

56-
QUIET_MKDIR_P_PARENT = @echo $(wspfx_SQ) MKDIR -p $(@D);
56+
QUIET_MKDIR_P_PARENT = @echo ' ' MKDIR -p $(@D);
5757

5858
## Used in "Makefile"
5959
QUIET_CC = @echo ' ' CC $@;

0 commit comments

Comments
 (0)