CVS update [cvs1-11-x-branch]: /ccvs/doc/
[email protected] 6 Apr 2005 20:57:50 -0000
| Newsgroups | gmane.comp.version-control.cvs.cvs |
|---|---|
| Message-ID | <[email protected]> |
Tag: cvs1-11-x-branch User: dprice Date: 05/04/06 13:57:50 Modified: /ccvs/doc/ ChangeLog, Makefile.am, Makefile.in Log: * Makefile.am (MAINTAINERCLEANFILES): Add cvs.1. (cvs.1): Create intermediate file so that the original isn't emptied on error. File Changes: Directory: /ccvs/doc/ ===================== File [changed]: ChangeLog Url: https://ccvs.cvshome.org/source/browse/ccvs/doc/ChangeLog?r1=1.721.2.85&r2=1.721.2.86 Delta lines: +6 -0 ------------------- --- ChangeLog 31 Jan 2005 22:11:04 -0000 1.721.2.85 +++ ChangeLog 6 Apr 2005 20:57:47 -0000 1.721.2.86 @@ -1,3 +1,9 @@ +2005-04-06 Derek Price <[email protected]> + + * Makefile.am (MAINTAINERCLEANFILES): Add cvs.1. + (cvs.1): Create intermediate file so that the original isn't emptied on + error. + 2005-01-31 Derek Price <[email protected]> * Makefile.am, cvs.man.header, cvs.texinfo: Update copyright notices. File [changed]: Makefile.am Url: https://ccvs.cvshome.org/source/browse/ccvs/doc/Makefile.am?r1=1.14.4.8&r2=1.14.4.9 Delta lines: +5 -2 ------------------- --- Makefile.am 31 Jan 2005 22:11:04 -0000 1.14.4.8 +++ Makefile.am 6 Apr 2005 20:57:47 -0000 1.14.4.9 @@ -50,7 +50,8 @@ # These Automake generates MOSTLYCLEAN targets for PostScripts genersted from # TEXINFOS, but it shouldn't when those files are in EXTRA_DIST MAINTAINERCLEANFILES = \ - $(PSS) + $(PSS) \ + cvs.1 doc: info ps .PHONY: doc @@ -81,7 +82,9 @@ # Targets to build a man page from cvs.texinfo. cvs.1: @MAINTAINER_MODE_TRUE@ mkman cvs.man.header cvs.texinfo cvs.man.footer $(PERL) ./mkman $(srcdir)/cvs.man.header $(srcdir)/cvs.texinfo \ - $(srcdir)/cvs.man.footer >$@ + $(srcdir)/cvs.man.footer >cvs.tmp + cp cvs.tmp $(srcdir)/$@ + -@rm -f cvs.tmp # texinfo based targets automake neglects to include SUFFIXES = .txt File [changed]: Makefile.in Url: https://ccvs.cvshome.org/source/browse/ccvs/doc/Makefile.in?r1=1.55.4.14&r2=1.55.4.15 Delta lines: +5 -2 ------------------- --- Makefile.in 15 Mar 2005 21:56:54 -0000 1.55.4.14 +++ Makefile.in 6 Apr 2005 20:57:47 -0000 1.55.4.15 @@ -205,7 +205,8 @@ # These Automake generates MOSTLYCLEAN targets for PostScripts genersted from # TEXINFOS, but it shouldn't when those files are in EXTRA_DIST MAINTAINERCLEANFILES = \ - $(PSS) + $(PSS) \ + cvs.1 # texinfo based targets automake neglects to include @@ -673,7 +674,9 @@ # Targets to build a man page from cvs.texinfo. cvs.1: @MAINTAINER_MODE_TRUE@ mkman cvs.man.header cvs.texinfo cvs.man.footer $(PERL) ./mkman $(srcdir)/cvs.man.header $(srcdir)/cvs.texinfo \ - $(srcdir)/cvs.man.footer >$@ + $(srcdir)/cvs.man.footer >cvs.tmp + cp cvs.tmp $(srcdir)/$@ + -@rm -f cvs.tmp .texinfo.txt: $(MAKEINFO) $(AM_MAKEINFOFLAGS) $(MAKEINFOFLAGS) -I $(srcdir) \ --no-headers -o $@ `test -f '$<' || echo '$(srcdir)/'`$<