Update maintenance scripts to disable Doxygen Markdown support.

This commit is contained in:
Dean Camera 2012-03-08 16:59:20 +00:00
parent 65019e4408
commit 915b4d2346
1 changed files with 2 additions and 0 deletions

View File

@ -16,6 +16,8 @@ upgrade-doxygen:
@echo Upgrading Doxygen.conf files...
@for doxygen_conf in `find $(LUFA_ROOT) -name Doxygen.conf`; do \
doxygen -u $$doxygen_conf; \
sed "s/MARKDOWN_SUPPORT *= *YES/MARKDOWN_SUPPORT = NO/1" $$doxygen_conf > $$doxygen_conf.new; \
mv -u $$doxygen_conf.new $$doxygen_conf; \
done;
@echo Doxygen configuration update complete.