]> git.ipfire.org Git - thirdparty/git.git/commitdiff
Makefile: use ' ', not non-existing $(wspfx_SQ)
authorÆvar Arnfjörð Bjarmason <avarab@gmail.com>
Sat, 19 Mar 2022 00:27:59 +0000 (01:27 +0100)
committerJunio C Hamano <gitster@pobox.com>
Mon, 21 Mar 2022 16:03:45 +0000 (09:03 -0700)
Change the use of a non-existing variable added in my
0b6d0bc9246 (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 0b6d0bc9246[1].

1. https://lore.kernel.org/git/patch-v4-8.9-3733b0c8df1-20220302T124320Z-avarab@gmail.com/

Signed-off-by: Ævar Arnfjörð Bjarmason <avarab@gmail.com>
Signed-off-by: Junio C Hamano <gitster@pobox.com>
shared.mak

index 4e1b62ee99ed31e749c3e87e87261fa05785bd69..50d4596f0d6084b8537c31a89fb2932565aa800a 100644 (file)
@@ -53,7 +53,7 @@ ifndef V
        QUIET          = @
        QUIET_GEN      = @echo '   ' GEN $@;
 
-       QUIET_MKDIR_P_PARENT  = @echo $(wspfx_SQ) MKDIR -p $(@D);
+       QUIET_MKDIR_P_PARENT  = @echo '   ' MKDIR -p $(@D);
 
 ## Used in "Makefile"
        QUIET_CC       = @echo '   ' CC $@;