[svn.haxx.se] · SVN Dev · SVN Users · SVN Org · TSVN Dev · TSVN Users · Subclipse Dev · Subclipse Users · this month's index

Re: problems building documentation

From: Daniele Nicolodi <daniele_at_grinta.net>
Date: 2002-07-23 22:26:40 CEST

On Sat, Jul 20, 2002 at 12:52:55PM -0400, Garrett Rooney wrote:

> does anyone else have these problems? and if not, can you still build
> correctly with these changes? i'd hate to commit a change that works
> for me but breaks for everyone else ;-)

I have your problem in building doc-html but not the doc-dvi one.
Your pathc for the first one is ok for me, the second doesn't break
anything for me. I get an error on make doc-clean:

make doc-clean
for d in doc/programmer/design doc/handbook; \
        do \
            (cd $d; \
             rm -f *.info *.info-1 *.info-2 *.info-3 \
                   *.aux *.cp *.fn *.ky *.log *.pg *.toc \
                   *.tp *.vr \
                   *.dvi *.txt *.html *.ps *.pdf); \
        done
rm: cannot remove `svn-design.html': Is a directory
rm: cannot remove `svn-handbook.html': Is a directory
make: *** [doc-clean] Error 1

This is the simpliest fix:

Index: ./Makefile.in
===================================================================
--- ./Makefile.in
+++ ./Makefile.in 2002-07-23 22:26:26.000000000 +0200
@@ -174,7 +174,8 @@
              rm -f *.info *.info-1 *.info-2 *.info-3 \
                    *.aux *.cp *.fn *.ky *.log *.pg *.toc \
                    *.tp *.vr \
- *.dvi *.txt *.html *.ps *.pdf); \
+ *.dvi *.txt *.ps *.pdf; \
+ rm -r -f *.html); \
         done
 
 ### Build a tarball.

Ciao

-- 
Daniele
		    --- http://www.grinta.net ---
---------------------------------------------------------------------
To unsubscribe, e-mail: dev-unsubscribe@subversion.tigris.org
For additional commands, e-mail: dev-help@subversion.tigris.org
Received on Tue Jul 23 22:27:44 2002

This is an archived mail posted to the Subversion Dev mailing list.

This site is subject to the Apache Privacy Policy and the Apache Public Forum Archive Policy.