From 778a06664034f5208aa28ed44fe541cb7e6fe69b Mon Sep 17 00:00:00 2001 From: bdean Date: Thu, 22 Sep 2005 17:51:59 +0000 Subject: [PATCH] Previous commit was the wrong fix, instead look for an alternate file for the texi2html split conditional. git-svn-id: svn://svn.savannah.nongnu.org/avrdude/trunk/avrdude@530 81a1dc3b-b13d-400b-aceb-764788c761c2 --- doc/Makefile.am | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/doc/Makefile.am b/doc/Makefile.am index 9f510cda..c8c6634e 100644 --- a/doc/Makefile.am +++ b/doc/Makefile.am @@ -33,8 +33,8 @@ html: avrdude-html/avrdude.html avrdude-html/avrdude.html: $(srcdir)/$(info_TEXINFOS) texi2html -split_node $(srcdir)/$(info_TEXINFOS) - if [ ! -e ./avrdude.html ]; then \ - mkdir -p avrdude-html; \ + if [ -e ./avrdude.html -o -e ./avrdude_1.html ]; then \ + mkdir -p avrdude-html ; \ mv -f *.html avrdude-html ; \ else \ mv -f avrdude avrdude-html; \