Welcome to mirror list, hosted at ThFree Co, Russian Federation.

git.kernel.org/pub/scm/git/git.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorÆvar Arnfjörð Bjarmason <avarab@gmail.com>2022-03-19 03:27:59 +0300
committerJunio C Hamano <gitster@pobox.com>2022-03-21 19:03:45 +0300
commit05b8b82542ac9e2e17312eac263728d88c9b3d97 (patch)
tree35af192e3281df75e86aec19e5759c1be91df2c0 /shared.mak
parent0b6d0bc9246b006ed3c241d4faace132998162d9 (diff)
Makefile: use ' ', not non-existing $(wspfx_SQ)
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>
Diffstat (limited to 'shared.mak')
-rw-r--r--shared.mak2
1 files changed, 1 insertions, 1 deletions
diff --git a/shared.mak b/shared.mak
index 4e1b62ee99..50d4596f0d 100644
--- a/shared.mak
+++ b/shared.mak
@@ -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 $@;