From: Russ Allbery Date: Mon, 25 Jul 2011 00:30:45 +0000 (-0700) Subject: Further Doxygen documentation fixes X-Git-Tag: debian/1.6.0-1~9 X-Git-Url: https://git.michaelhowe.org/gitweb/?a=commitdiff_plain;h=3216781f51cd548cada7c83b232674e5a85c7010;p=packages%2Fo%2Fopenafs.git Further Doxygen documentation fixes * Fix another Doxygen call to generate a configuration file, and remove the generated configuration files after Doxygen runs. --- diff --git a/debian/changelog b/debian/changelog index 983fddb3c..953a23f60 100644 --- a/debian/changelog +++ b/debian/changelog @@ -1,3 +1,10 @@ +openafs (1.6.0~pre7-3) UNRELEASED; urgency=low + + * Fix another Doxygen call to generate a configuration file, and remove + the generated configuration files after Doxygen runs. + + -- Russ Allbery Sun, 24 Jul 2011 17:30:26 -0700 + openafs (1.6.0~pre7-2) unstable; urgency=low * Force use of dblatex to build the manual, even if docbook2pdf is diff --git a/debian/rules b/debian/rules index 0109fc378..9f889889b 100755 --- a/debian/rules +++ b/debian/rules @@ -159,13 +159,13 @@ override_dh_install: cp doc/xml/AdminGuide/*.png $(DOCS)/html/AdminGuide/ mkdir $(DOCS)/html/arch-overview cp doc/arch/arch-overview.h $(DOCS)/html/arch-overview - cd $(DOCS)/html/arch-overview && doxygen *.h && rm *.h && mv html/* . \ - && rm -r latex html + cd $(DOCS)/html/arch-overview && doxygen -g && doxygen \ + && rm Doxyfile *.h && mv html/* . && rm -r latex html set -e; for h in doc/protocol/*.h ; do \ mkdir $(DOCS)/html/`basename $$h .h` ; \ cp $$h $(DOCS)/html/`basename $$h .h` ; \ cd $(DOCS)/html/`basename $$h .h` && doxygen -g && doxygen \ - && rm *.h && mv html/* . && rm -r latex html \ + && rm Doxyfile *.h && mv html/* . && rm -r latex html \ && cd $(CURDIR) ; \ done