* 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/avrdude@499 81a1dc3b-b13d-400b-aceb-764788c761c2
This commit is contained in:
parent
3b15170bfd
commit
d7ca31a76e
10
ChangeLog
10
ChangeLog
|
@ -1,3 +1,13 @@
|
||||||
|
2005-09-16 Joerg Wunsch <j@uriah.heep.sax.de>
|
||||||
|
|
||||||
|
* 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 <j@uriah.heep.sax.de>
|
2005-09-16 Joerg Wunsch <j@uriah.heep.sax.de>
|
||||||
|
|
||||||
* usb_libusb.c (usbdev_drain): actually implement draining to aid
|
* usb_libusb.c (usbdev_drain): actually implement draining to aid
|
||||||
|
|
|
@ -30,9 +30,14 @@ info_TEXINFOS = avrdude.texi
|
||||||
all-local: info html ps pdf
|
all-local: info html ps pdf
|
||||||
|
|
||||||
html:
|
html:
|
||||||
mkdir -p avrdude-html
|
|
||||||
texi2html -split_node $(srcdir)/$(info_TEXINFOS)
|
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:
|
clean-local:
|
||||||
rm -rf avrdude-html *.info
|
rm -rf avrdude-html *.info
|
||||||
|
|
Loading…
Reference in New Issue