From bc67ebc5858956eca492d3a8353162e1b600f954 Mon Sep 17 00:00:00 2001 From: Mirko Vogt Date: Thu, 12 Mar 2015 00:39:50 +0000 Subject: [PATCH] disable silent-rules by default OpenWrt hides verbose output by default, regardless of automake silent-rules being en-/disabled. If we enable verbose output for package builds (V=s) however, we'd like to see as most as possible. Signed-off-by: Mirko Vogt SVN-Revision: 44685 --- tools/automake/Makefile | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/tools/automake/Makefile b/tools/automake/Makefile index 8c390d48de..6395d84387 100644 --- a/tools/automake/Makefile +++ b/tools/automake/Makefile @@ -15,7 +15,10 @@ PKG_MD5SUM:=9a1ddb0e053474d9d1105cfe39b0c48d include $(INCLUDE_DIR)/host-build.mk -HOST_CONFIGURE_ARGS += --datarootdir=$(STAGING_DIR_HOST)/share +HOST_CONFIGURE_ARGS += \ + --datarootdir=$(STAGING_DIR_HOST)/share \ + --disable-silent-rules + HOST_CONFIGURE_VARS += am_cv_prog_PERL_ithreads=no define Host/Configure