aboutsummaryrefslogtreecommitdiff
path: root/BuildTests/ModuleTest/makefile.xmega
diff options
context:
space:
mode:
authorDean <Dean@d5102386-fcda-11dd-9fdb-3debd5008f28>2012-03-09 22:36:56 +0000
committerDean <Dean@d5102386-fcda-11dd-9fdb-3debd5008f28>2012-03-09 22:36:56 +0000
commit6de350f9f867bdd2d49128082ae9375b82370819 (patch)
treece03fdd0ad535e89f861a66c3707f9cfeed86f3c /BuildTests/ModuleTest/makefile.xmega
parent50bd690266588432561947355f52c663bd125a20 (diff)
Only abort Doxygen documentation generation if a non-unsupported tag warning is encountered.
git-svn-id: http://lufa-lib.googlecode.com/svn/trunk@2104 d5102386-fcda-11dd-9fdb-3debd5008f28
Diffstat (limited to 'BuildTests/ModuleTest/makefile.xmega')
-rw-r--r--BuildTests/ModuleTest/makefile.xmega2
1 files changed, 1 insertions, 1 deletions
diff --git a/BuildTests/ModuleTest/makefile.xmega b/BuildTests/ModuleTest/makefile.xmega
index a48cb1be..a003ecfd 100644
--- a/BuildTests/ModuleTest/makefile.xmega
+++ b/BuildTests/ModuleTest/makefile.xmega
@@ -701,7 +701,7 @@ clean_list :
doxygen:
@echo Generating Project Documentation \($(TARGET)\)...
- @if ( doxygen Doxygen.conf 2>&1 | grep "warning" ;); then \
+ @if ( doxygen Doxygen.conf 2>&1 | grep ": warning:" ;); then \
exit 1; \
fi;
@echo Documentation Generation Complete.