mirror of
https://github.com/qmk/qmk_firmware.git
synced 2025-06-11 19:34:17 +00:00
Don't fail Doxygen on versions built without various features.
This commit is contained in:
parent
faf41c4445
commit
9efce7263c
@ -72,7 +72,7 @@ MSG_DOXYGEN_CMD := ' [DOXYGEN] :'
|
|||||||
# Determine Doxygen invocation command
|
# Determine Doxygen invocation command
|
||||||
BASE_DOXYGEN_CMD := ( cat $(DOXYGEN_CONF) $(DOXYGEN_OVERRIDE_PARAMS:%=; echo "%") ) | doxygen -
|
BASE_DOXYGEN_CMD := ( cat $(DOXYGEN_CONF) $(DOXYGEN_OVERRIDE_PARAMS:%=; echo "%") ) | doxygen -
|
||||||
ifeq ($(DOXYGEN_FAIL_ON_WARNING), Y)
|
ifeq ($(DOXYGEN_FAIL_ON_WARNING), Y)
|
||||||
DOXYGEN_CMD := if ( $(BASE_DOXYGEN_CMD) 2>&1 | grep -v "warning: ignoring unsupported tag" ;); then exit 1; fi;
|
DOXYGEN_CMD := if ( $(BASE_DOXYGEN_CMD) 2>&1 | grep -v -e "[Ww]arning:\|recompile doxygen" ;); then exit 1; fi;
|
||||||
else
|
else
|
||||||
DOXYGEN_CMD := $(BASE_DOXYGEN_CMD)
|
DOXYGEN_CMD := $(BASE_DOXYGEN_CMD)
|
||||||
endif
|
endif
|
||||||
|
Loading…
Reference in New Issue
Block a user