From a0b3fe39c13c4eb59ea9ab1e9b5e6d4d8887d327 Mon Sep 17 00:00:00 2001 From: Wolfgang Bangerth Date: Fri, 14 Jan 2011 01:52:06 +0000 Subject: [PATCH] If intro.dox or results.dox ends in an enumeration that uses the doxygen shortcut way of only using dashes at the beginning of the line, and there is no empty line at the end of the file, then the next heading is going to be part of the enumeration item. We don't want that: avoid that by adding a single empty line. git-svn-id: https://svn.dealii.org/trunk@23188 0785d39b-7218-0410-832d-ea1e28bc413d --- deal.II/doc/doxygen/tutorial/Makefile | 2 ++ 1 file changed, 2 insertions(+) diff --git a/deal.II/doc/doxygen/tutorial/Makefile b/deal.II/doc/doxygen/tutorial/Makefile index e77f1ed013..b5978c91c9 100644 --- a/deal.II/doc/doxygen/tutorial/Makefile +++ b/deal.II/doc/doxygen/tutorial/Makefile @@ -147,9 +147,11 @@ $(example-doxygen): @echo "@endhtmlonly" >> $@ @cat $D/examples/$(call get_basename, $@)/doc/intro.dox \ | $(PERL) create_anchors >> $@ + @echo >> $@ @cat generated/$(call get_basename, $@)_prog.dox >> $@ @cat $D/examples/$(call get_basename, $@)/doc/results.dox \ | $(PERL) create_anchors >> $@ + @echo >> $@ @echo " " >> $@ @echo "

The plain program

" >> $@ @echo " @include \"$(call get_basename, $@).cc\"" >> $@ -- 2.39.5