[PATCH] build: Make entering the directories silent when building silent.
Chris Johns
chrisj at rtems.org
Thu Apr 12 07:53:58 UTC 2018
---
cpukit/automake/subdirs.am | 2 +-
testsuites/automake/subdirs.am | 2 +-
2 files changed, 2 insertions(+), 2 deletions(-)
diff --git a/cpukit/automake/subdirs.am b/cpukit/automake/subdirs.am
index b36ad80735..62634931f0 100644
--- a/cpukit/automake/subdirs.am
+++ b/cpukit/automake/subdirs.am
@@ -28,7 +28,7 @@ $1: $(preintstall_targets)
if test "$$$$target" = "all-local"; then \
target="all"; \
fi; \
- echo "Making $$$$target in $$$$subdir"; \
+ if $(AM_V_P); then echo "Making $$$$target in $$$$subdir"; fi; \
if test "$$$$subdir" != "."; then \
cd $$$$subdir; \
$(MAKE) $(AM_MAKEFLAGS) $$$$target; \
diff --git a/testsuites/automake/subdirs.am b/testsuites/automake/subdirs.am
index a566774bab..0406af7cb2 100644
--- a/testsuites/automake/subdirs.am
+++ b/testsuites/automake/subdirs.am
@@ -16,7 +16,7 @@ $1:
if test "$$$$target" = "all-local"; then \
target="all"; \
fi; \
- echo "Making $$$$target in $(1)"; \
+ if $(AM_V_P); then echo "Making $$$$target in $$(1)"; fi; \
cd $(1); \
$(MAKE) $(AM_MAKEFLAGS) TEST_FLAGS="$$$$test_FLAGS" $$$$target; \
fi;
--
2.15.1
More information about the devel
mailing list