diff options
author | Dean Camera <dean@fourwalledcubicle.com> | 2012-03-09 22:36:56 +0000 |
---|---|---|
committer | Dean Camera <dean@fourwalledcubicle.com> | 2012-03-09 22:36:56 +0000 |
commit | d5291c2e102e3cd0979179eef89ce2cb083614f3 (patch) | |
tree | ce03fdd0ad535e89f861a66c3707f9cfeed86f3c /BuildTests/ModuleTest | |
parent | 3ea356a72054b540e1c529fee5f55b10324254a4 (diff) | |
download | lufa-d5291c2e102e3cd0979179eef89ce2cb083614f3.tar.gz lufa-d5291c2e102e3cd0979179eef89ce2cb083614f3.tar.bz2 lufa-d5291c2e102e3cd0979179eef89ce2cb083614f3.zip |
Only abort Doxygen documentation generation if a non-unsupported tag warning is encountered.
Diffstat (limited to 'BuildTests/ModuleTest')
-rw-r--r-- | BuildTests/ModuleTest/makefile.avr8 | 2 | ||||
-rw-r--r-- | BuildTests/ModuleTest/makefile.uc3 | 2 | ||||
-rw-r--r-- | BuildTests/ModuleTest/makefile.xmega | 2 |
3 files changed, 3 insertions, 3 deletions
diff --git a/BuildTests/ModuleTest/makefile.avr8 b/BuildTests/ModuleTest/makefile.avr8 index b94ac50e9..e5a6d75a5 100644 --- a/BuildTests/ModuleTest/makefile.avr8 +++ b/BuildTests/ModuleTest/makefile.avr8 @@ -707,7 +707,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.
diff --git a/BuildTests/ModuleTest/makefile.uc3 b/BuildTests/ModuleTest/makefile.uc3 index 3fa866c91..97c2e9c24 100644 --- a/BuildTests/ModuleTest/makefile.uc3 +++ b/BuildTests/ModuleTest/makefile.uc3 @@ -481,7 +481,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.
diff --git a/BuildTests/ModuleTest/makefile.xmega b/BuildTests/ModuleTest/makefile.xmega index a48cb1bef..a003ecfd1 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.
|