Skip to content

Commit

Permalink
include/verbose.mk: Add sc to failure message
Browse files Browse the repository at this point in the history
Add sc to build error message

Signed-off-by: Daniel Engberg <[email protected]>
  • Loading branch information
diizzyy authored and blogic committed Jul 30, 2018
1 parent 7a3e133 commit 0aaa650
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion include/verbose.mk
Original file line number Diff line number Diff line change
Expand Up @@ -54,7 +54,7 @@ ifeq ($(findstring s,$(OPENWRT_VERBOSE)),)
else
SILENT:=>/dev/null $(if $(findstring w,$(OPENWRT_VERBOSE)),,2>&1)
export QUIET:=1
SUBMAKE=cmd() { $(SILENT) $(MAKE) -s "$$@" < /dev/null || { echo "make $$*: build failed. Please re-run make with -j1 V=s to see what's going on"; false; } } 8>&1 9>&2; cmd
SUBMAKE=cmd() { $(SILENT) $(MAKE) -s "$$@" < /dev/null || { echo "make $$*: build failed. Please re-run make with -j1 V=s or V=sc for a higher verbosity level to see what's going on"; false; } } 8>&1 9>&2; cmd
endif

.SILENT: $(MAKECMDGOALS)
Expand Down

0 comments on commit 0aaa650

Please sign in to comment.