add a flag "IGNORE_ERRORS", which can be used to ignore build errors in packages

SVN-Revision: 11059
This commit is contained in:
Felix Fietkau
2008-05-07 16:45:00 +00:00
parent 4a2ab2e0d4
commit 31a3a503cc
3 changed files with 13 additions and 5 deletions

View File

@@ -25,11 +25,11 @@ ifeq ($(IS_TTY),1)
_N:=\\033[m
endif
define MESSAGE
printf "$(_Y)%s$(_N)\n" "$(1)" >&3
endef
ifneq ($(KBUILD_VERBOSE),99)
define MESSAGE
printf "$(_Y)%s$(_N)\n" "$(1)" >&3
endef
ifeq ($(QUIET),1)
ifneq ($(CURDIR),$(TOPDIR))
_DIR:=$(patsubst $(TOPDIR)/%,%,${CURDIR})
@@ -48,4 +48,8 @@ ifneq ($(KBUILD_VERBOSE),99)
endif
.SILENT: $(MAKECMDGOALS)
else
define MESSAGE
printf "%s\n" "$(1)"
endef
endif