diff options
author | Felix Fietkau <nbd@openwrt.org> | 2009-04-24 01:20:23 +0000 |
---|---|---|
committer | Felix Fietkau <nbd@openwrt.org> | 2009-04-24 01:20:23 +0000 |
commit | e3c1cb73163a3fbc899e900a49545da5524b575d (patch) | |
tree | dd9e1e9be49e534caed1e7e99d3c4655e3dd1ac4 /include | |
parent | 8f2e42b5b7b768e22e0f35c493de40d349443b2e (diff) | |
download | upstream-e3c1cb73163a3fbc899e900a49545da5524b575d.tar.gz upstream-e3c1cb73163a3fbc899e900a49545da5524b575d.tar.bz2 upstream-e3c1cb73163a3fbc899e900a49545da5524b575d.zip |
add missing $(if) check for build logging
git-svn-id: svn://svn.openwrt.org/openwrt/trunk@15366 3c298f89-4303-0410-b956-a3cf2f4a3e73
Diffstat (limited to 'include')
-rw-r--r-- | include/subdir.mk | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/include/subdir.mk b/include/subdir.mk index df9ba41cba..1e669443be 100644 --- a/include/subdir.mk +++ b/include/subdir.mk @@ -35,7 +35,7 @@ define subdir ) $(call warn_eval,$(1)/$(bd),t,T,$(1)/$(bd)/$(target): $(if $(QUILT),,$($(1)/$(bd)/$(target)) $(call $(1)//$(target),$(1)/$(bd)))) $(if $(BUILD_LOG),@mkdir -p $(TOPDIR)/logs/$(1)/$(bd)) - +$$(SUBMAKE) -C $(1)/$(bd) $(target) SILENT= 2>&1 | tee $(TOPDIR)/logs/$(1)/$(bd)/$(target).txt $(if $(findstring $(bd),$($(1)/builddirs-ignore-$(target))), || $(call MESSAGE, ERROR: $(1)/$(bd) failed to build.)) + +$$(SUBMAKE) -C $(1)/$(bd) $(target) $(if $(BUILD_LOG),SILENT= 2>&1 | tee $(TOPDIR)/logs/$(1)/$(bd)/$(target).txt) $(if $(findstring $(bd),$($(1)/builddirs-ignore-$(target))), || $(call MESSAGE, ERROR: $(1)/$(bd) failed to build.)) $$(if $(call debug,$(1)/$(bd),v),,.SILENT: $(1)/$(bd)/$(target)) # legacy targets |