Skip to content
Snippets Groups Projects
Commit 915b4d23 authored by Dean Camera's avatar Dean Camera
Browse files

Update maintenance scripts to disable Doxygen Markdown support.

parent 65019e44
No related branches found
No related tags found
No related merge requests found
......@@ -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.
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment