diff options
author | Felix Fietkau <nbd@openwrt.org> | 2005-11-13 01:04:50 +0000 |
---|---|---|
committer | Felix Fietkau <nbd@openwrt.org> | 2005-11-13 01:04:50 +0000 |
commit | 325be15770db1047bb980bd967d641a2dd84faae (patch) | |
tree | 866fe86624e12419b243e34e55eec5ef17ed12f6 /openwrt | |
parent | ddf41c2d80a46964cf5534bb09604052c6a57929 (diff) | |
download | mtk-20170518-325be15770db1047bb980bd967d641a2dd84faae.zip mtk-20170518-325be15770db1047bb980bd967d641a2dd84faae.tar.gz mtk-20170518-325be15770db1047bb980bd967d641a2dd84faae.tar.bz2 |
set V=5 as default and fix toolchain verbosity setting
SVN-Revision: 2469
Diffstat (limited to 'openwrt')
-rw-r--r-- | openwrt/rules.mk | 2 | ||||
-rw-r--r-- | openwrt/toolchain/Makefile | 8 |
2 files changed, 5 insertions, 5 deletions
diff --git a/openwrt/rules.mk b/openwrt/rules.mk index 1651a44..3866ede 100644 --- a/openwrt/rules.mk +++ b/openwrt/rules.mk @@ -3,7 +3,7 @@ SHELL=/bin/bash export SHELL ifeq ($(V),) -V=99 +V=5 endif diff --git a/openwrt/toolchain/Makefile b/openwrt/toolchain/Makefile index 9cc24d5..c99116d 100644 --- a/openwrt/toolchain/Makefile +++ b/openwrt/toolchain/Makefile @@ -32,26 +32,26 @@ $(TOOL_BUILD_DIR): %-prepare: $(TOOLCHAIN_STAMP_DIR) $(STAGING_DIR) $(TOOL_BUILD_DIR) @[ -f $(TOOLCHAIN_STAMP_DIR)/.toolchain_$@ ] || { \ $(TRACE) toolchain/$(patsubst %-prepare,%,$@)/prepare; \ - $(MAKE) -C $(patsubst %-prepare,%,$@) prepare; \ + $(MAKE) -C $(patsubst %-prepare,%,$@) prepare $(MAKE_TRACE); \ } @touch $(TOOLCHAIN_STAMP_DIR)/.toolchain_$@ %-compile: %-prepare @[ -f $(TOOLCHAIN_STAMP_DIR)/.toolchain_$@ ] || { \ $(TRACE) toolchain/$(patsubst %-compile,%,$@)/compile; \ - $(MAKE) -C $(patsubst %-compile,%,$@) compile; \ + $(MAKE) -C $(patsubst %-compile,%,$@) compile $(MAKE_TRACE); \ } @touch $(TOOLCHAIN_STAMP_DIR)/.toolchain_$@ %-install: %-compile @[ -f $(TOOLCHAIN_STAMP_DIR)/.toolchain_$@ ] || { \ $(TRACE) toolchain/$(patsubst %-install,%,$@)/install; \ - $(MAKE) -C $(patsubst %-install,%,$@) install; \ + $(MAKE) -C $(patsubst %-install,%,$@) install $(MAKE_TRACE); \ } @touch $(TOOLCHAIN_STAMP_DIR)/.toolchain_$@ %-clean: $(TRACE) toolchain/$(patsubst %-clean,%,$@)/clean - @$(MAKE) -C $(patsubst %-clean,%,$@) clean + @$(MAKE) -C $(patsubst %-clean,%,$@) clean $(MAKE_TRACE) @rm -f $(TOOLCHAIN_STAMP_DIR)/.toolchain_$(patsubst %-clean,%,$@)-* |