projects
/
pub
/
USBasp.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
faf41c4
)
Don't fail Doxygen on versions built without various features.
author
Dean Camera
<dean@fourwalledcubicle.com>
Sun, 26 Apr 2015 03:01:32 +0000
(13:01 +1000)
committer
Dean Camera
<dean@fourwalledcubicle.com>
Sun, 26 Apr 2015 03:01:32 +0000
(13:01 +1000)
LUFA/Build/lufa_doxygen.mk
patch
|
blob
|
blame
|
history
diff --git
a/LUFA/Build/lufa_doxygen.mk
b/LUFA/Build/lufa_doxygen.mk
index
babf287
..
ab10cb1
100644
(file)
--- a/
LUFA/Build/lufa_doxygen.mk
+++ b/
LUFA/Build/lufa_doxygen.mk
@@
-72,7
+72,7
@@
MSG_DOXYGEN_CMD := ' [DOXYGEN] :'
# Determine Doxygen invocation command
BASE_DOXYGEN_CMD := ( cat $(DOXYGEN_CONF) $(DOXYGEN_OVERRIDE_PARAMS:%=; echo "%") ) | doxygen -
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
DOXYGEN_CMD := $(BASE_DOXYGEN_CMD)
endif