Makefile.in |    6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

New commits:
commit f7da3a4ba0a779c4bfa02b867b857f6ca7dcd104
Author:     Jan-Marek Glogowski <glo...@fbihome.de>
AuthorDate: Mon Dec 13 12:05:33 2021 +0100
Commit:     Jan-Marek Glogowski <glo...@fbihome.de>
CommitDate: Mon Dec 13 16:49:15 2021 +0100

    Respect verbose setting for module-deps.pl calls
    
    Can't use $(gb_VERBOSE), as this runs pre-gbuild.
    
    Change-Id: I7343ede538a246d54f3ce9fcaf104dfbdea08653
    Reviewed-on: https://gerrit.libreoffice.org/c/core/+/126729
    Tested-by: Jenkins
    Reviewed-by: Jan-Marek Glogowski <glo...@fbihome.de>

diff --git a/Makefile.in b/Makefile.in
index 9a53bd6881bf..7380e275d200 100644
--- a/Makefile.in
+++ b/Makefile.in
@@ -463,13 +463,13 @@ create-partial-info:
        $(MAKE) -f $(SRCDIR)/Makefile.gbuild create-partial-info
 
 dump-deps:
-       @$(SRCDIR)/bin/module-deps.pl $(MAKE) $(SRCDIR)/Makefile.gbuild
+       @$(SRCDIR)/bin/module-deps.pl $(if $(verbose),-v) $(MAKE) 
$(SRCDIR)/Makefile.gbuild
 
 dump-deps-png:
-       @$(SRCDIR)/bin/module-deps.pl $(MAKE) $(SRCDIR)/Makefile.gbuild | dot 
-Tpng -o lo.png
+       @$(SRCDIR)/bin/module-deps.pl $(if $(verbose),-v) $(MAKE) 
$(SRCDIR)/Makefile.gbuild | dot -Tpng -o lo.png
 
 dump-deps-sort:
-       @$(SRCDIR)/bin/module-deps.pl -t $(MAKE) $(SRCDIR)/Makefile.gbuild
+       @$(SRCDIR)/bin/module-deps.pl -t $(if $(verbose),-v) $(MAKE) 
$(SRCDIR)/Makefile.gbuild
 
 clang-format-check:
        @$(SRCDIR)/solenv/clang-format/check-last-commit

Reply via email to