From 1f41bb7738cdbad6195b045e83f7971b28a8263f Mon Sep 17 00:00:00 2001 From: Mike Frysinger Date: Sat, 9 Oct 2004 18:58:04 +0000 Subject: [PATCH] support tar verbosity --- Config.in | 3 +++ Makefile | 6 ++++++ 2 files changed, 9 insertions(+) diff --git a/Config.in b/Config.in index 076596223b..0b6edd59af 100644 --- a/Config.in +++ b/Config.in @@ -62,6 +62,9 @@ config BR2_WGET string default "wget --passive-ftp" +config BR2_TAR_VERBOSITY + string + default "no" source "toolchain/Config.in" diff --git a/Makefile b/Makefile index 0af932dcf3..e810ecf131 100644 --- a/Makefile +++ b/Makefile @@ -35,6 +35,12 @@ ifeq ($(filter $(noconfig_targets),$(MAKECMDGOALS)),) -include $(TOPDIR).config endif +ifeq ($(strip $(BR2_TAR_VERBOSITY)),"yes") +TAR_VERBOSITY=v +else +TAR_VERBOSITY= +endif + ifeq ($(strip $(BR2_HAVE_DOT_CONFIG)),y) ############################################################# -- 2.30.2