From 3216781f51cd548cada7c83b232674e5a85c7010 Mon Sep 17 00:00:00 2001 From: Russ Allbery Date: Sun, 24 Jul 2011 17:30:45 -0700 Subject: [PATCH] Further Doxygen documentation fixes * Fix another Doxygen call to generate a configuration file, and remove the generated configuration files after Doxygen runs. --- debian/changelog | 7 +++++++ debian/rules | 6 +++--- 2 files changed, 10 insertions(+), 3 deletions(-) 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 -- 2.39.5