diff options
| author | Eneas U de Queiroz | 2020-04-17 23:57:06 +0000 |
|---|---|---|
| committer | Petr Štetiar | 2020-05-20 15:03:45 +0000 |
| commit | f827f947aed2d6395eb33ffc36863561145ea420 (patch) | |
| tree | 8e3a6445b58238e9535281992251def8caee3983 | |
| parent | 1f2539a1f48b37b3aa99efba6bcef7cc2030793a (diff) | |
| download | openwrt-f827f947aed2d6395eb33ffc36863561145ea420.tar.gz | |
build: show make output in scripts/config when V=s
This should make debugging build errors in scripts/config a bit easier.
Signed-off-by: Eneas U de Queiroz <cotequeiroz@gmail.com>
| -rw-r--r-- | include/toplevel.mk | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/include/toplevel.mk b/include/toplevel.mk index 2965f75c7c..ad8e5b8f20 100644 --- a/include/toplevel.mk +++ b/include/toplevel.mk @@ -104,7 +104,8 @@ scripts/config/%onf: export PATH:=$(dir $(DISTRO_PKG_CONFIG)):$(PATH) endif scripts/config/%onf: CFLAGS+= -O2 scripts/config/%onf: - @$(_SINGLE)$(SUBMAKE) -s -C scripts/config $(notdir $@) CC="$(HOSTCC_WRAPPER)" + @$(_SINGLE)$(SUBMAKE) $(if $(findstring s,$(OPENWRT_VERBOSE)),,-s) \ + -C scripts/config $(notdir $@) CC="$(HOSTCC_WRAPPER)" $(eval $(call rdep,scripts/config,scripts/config/mconf)) |