Ignore:
Timestamp:
Dec 10, 2006, 8:16:02 AM (19 years ago)
Author:
bird
Message:

Implemented KBUILD_QUIET and KBUILD_VERBOSE={1|full} (was BUILD_QUIET, BUILD_VERBOSE, BUILD_DEBUG).

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/kBuild/tools/TAR.kmk

    r692 r696  
    5757ifeq ($(BUILD_PLATFORM),win) # hacking with buggy unxutils on windows. it doesn't like driver letters.
    5858define TOOL_TAR_UNPACK_CMDS
    59         $(TOOL_TAR_UNPACK) -x $(flags) -C $(subst G:,,$(inst)) -f $(archive)
    60         $(TOOL_TAR_UNPACK) -t $(flags) -f $(archive) > $(out)
     59        $(QUIET)$(TOOL_TAR_UNPACK) -x $(flags) -C $(subst G:,,$(inst)) -f $(archive)
     60        $(QUIET)$(TOOL_TAR_UNPACK) -t $(flags) -f $(archive) > $(out)
    6161endef
    6262else
    6363define TOOL_TAR_UNPACK_CMDS
    64         $(TOOL_TAR_UNPACK) -x $(flags) -C $(inst) -f $(archive)
    65         $(TOOL_TAR_UNPACK) -t $(flags) -f $(archive) > $(out)
     64        $(QUIET)$(TOOL_TAR_UNPACK) -x $(flags) -C $(inst) -f $(archive)
     65        $(QUIET)$(TOOL_TAR_UNPACK) -t $(flags) -f $(archive) > $(out)
    6666endef
    6767endif
Note: See TracChangeset for help on using the changeset viewer.