From f6c22138711a5c8a8c02d328505f374c83c05231 Mon Sep 17 00:00:00 2001 From: Joerg Wunsch Date: Fri, 16 Sep 2005 20:18:37 +0000 Subject: [PATCH] * doc/Makefile.am: add logic to detect the misf^H^H^H^H gratitous API change in recent versions of texi2html where the output directory has changed names. Fix for: bug #13026: The build fails with texi2html 1.76 bug #12715: make issues during install patch #3091: commandline fix for latest version of texi2html git-svn-id: svn://svn.savannah.nongnu.org/avrdude/trunk@499 81a1dc3b-b13d-400b-aceb-764788c761c2 --- avrdude/ChangeLog | 10 ++++++++++ avrdude/doc/Makefile.am | 9 +++++++-- 2 files changed, 17 insertions(+), 2 deletions(-) diff --git a/avrdude/ChangeLog b/avrdude/ChangeLog index 31e995f0..7b411aea 100644 --- a/avrdude/ChangeLog +++ b/avrdude/ChangeLog @@ -1,3 +1,13 @@ +2005-09-16 Joerg Wunsch + + * doc/Makefile.am: add logic to detect the misf^H^H^H^H + gratitous API change in recent versions of texi2html where + the output directory has changed names. + Fix for: + bug #13026: The build fails with texi2html 1.76 + bug #12715: make issues during install + patch #3091: commandline fix for latest version of texi2html + 2005-09-16 Joerg Wunsch * usb_libusb.c (usbdev_drain): actually implement draining to aid diff --git a/avrdude/doc/Makefile.am b/avrdude/doc/Makefile.am index da00db63..69e0276a 100644 --- a/avrdude/doc/Makefile.am +++ b/avrdude/doc/Makefile.am @@ -30,9 +30,14 @@ info_TEXINFOS = avrdude.texi all-local: info html ps pdf html: - mkdir -p avrdude-html texi2html -split_node $(srcdir)/$(info_TEXINFOS) - mv *.html avrdude-html + if [ -e ./avrdude.html ]; then \ + mkdir -p avrdude-html; \ + mv *.html avrdude-html ; \ + else \ + mv avrdude avrdude-html; \ + fi; + clean-local: rm -rf avrdude-html *.info