Re: [Doxygen-users] Re: Doxygen-users digest, Vol 1 #24 - 3 msgs
Brought to you by:
dimitri
From: Joseph H. <jo...@pi...> - 2001-05-20 12:05:05
|
On 19 May, Jens Seidel wrote: > make install complains about a missing ../src/translator.h file. > I attached a patch, which fixes this. > > PS: Marvin, your mail was to large, if you really want to submit files of > this size, use an attachment! Looks like it should really using install rather than mkdir, otherwise make aborts if the directory is already there: --- Makefile.in 2001/04/01 17:28:21 1.18 +++ Makefile.in 2001/05/20 11:59:55 @@ -52,6 +52,8 @@ $(INSTTOOL) -m 755 bin/doxytag $(INSTALL)/bin $(INSTTOOL) -m 755 bin/doxysearch $(INSTALL)/bin cp -r doc $(DOCDIR) + $(INSTTOOL) -d $(DOCDIR)/src + cp src/translator.h $(DOCDIR)/src cp -r examples $(DOCDIR) echo "DOXYGEN = $(INSTALL)" > $(DOCDIR)/doc/Makefile echo "DOXYDOCS = .." >> $(DOCDIR)/doc/Makefile @@ -59,7 +61,7 @@ cat doc/Makefile.in >> $(DOCDIR)/doc/Makefile cd $(DOCDIR)/examples ; $(MAKE) cd $(DOCDIR)/doc ; $(MAKE) - rm -rf $(DOCDIR)/doc + rm -rf $(DOCDIR)/doc $(DOCDIR)/src cd $(DOCDIR)/latex ; $(MAKE) cp $(DOCDIR)/latex/doxygen_manual.pdf $(DOCDIR) cp $(DOCDIR)/latex/doxygen_manual.ps $(DOCDIR) Also, doing 'make install' from the CVS version fails if PATH doesn't contain '.': cd /usr/local/share/doc/packages/doxygen/doc ; /usr/bin/make make[1]: Entering directory `/usr/local/share/doc/packages/doxygen/doc' translator.pl make[1]: translator.pl: Command not found make[1]: *** [language.doc] Error 127 make[1]: Leaving directory `/usr/local/share/doc/packages/doxygen/doc' make: *** [install] Error 2 bfn, Joseph -- Joseph Heenan, Software Engineer, Picsel Technologies Ltd. [ Opinions expressed are not necessarily those of my employer ] |