From c91e6a97f5e06756f1b61717c5f6a4d1ac8b2411 Mon Sep 17 00:00:00 2001 From: Marc Feeley Date: Fri, 5 Jun 2009 17:57:59 -0400 Subject: [PATCH] Improve error message when documentation can't be built. --- doc/makefile.in | 10 +++++----- include/stamp.h | 2 +- 2 files changed, 6 insertions(+), 6 deletions(-) diff --git a/doc/makefile.in b/doc/makefile.in index 55a0505..523473b 100644 --- a/doc/makefile.in +++ b/doc/makefile.in @@ -104,19 +104,19 @@ html: gambit-c.html txt: gambit-c.txt gambit-c.info: gambit-c.txi version.txi - (cd $(srcdir) && $(MAKEINFO) gambit-c.txi) || (cp gambit-c.txi $@ && echo "*** $@ could not be built") + (cd $(srcdir) && $(MAKEINFO) gambit-c.txi) || (echo "*** $@ could not be built (perhaps $(MAKEINFO) is not installed?)" > $@) gambit-c.ps: gambit-c.pdf - (cd $(srcdir) && $(PDF2PS) gambit-c.pdf) || (cp gambit-c.txi $@ && echo "*** $@ could not be built") + (cd $(srcdir) && $(PDF2PS) gambit-c.pdf) || (echo "*** $@ could not be built (perhaps $(PDF2PS) is not installed?)" > $@) gambit-c.pdf: gambit-c.txi version.txi - (cd $(srcdir) && cd $(srcdir) && $(TEXI2DVI) -p gambit-c.txi) || (cp gambit-c.txi $@ && echo "*** $@ could not be built") + (cd $(srcdir) && cd $(srcdir) && $(TEXI2DVI) -p gambit-c.txi) || (echo "*** $@ could not be built (perhaps $(TEXI2DVI) is not installed?)" > $@) gambit-c.html: gambit-c.txi - (cd $(srcdir) && $(TEXI2HTML) -def-table gambit-c.txi) || (cp gambit-c.txi $@ && echo "*** $@ could not be built") + (cd $(srcdir) && $(TEXI2HTML) -def-table gambit-c.txi) || (echo "*** $@ could not be built (perhaps $(TEXI2HTML) is not installed?)" > $@) gambit-c.txt: gambit-c.txi - (cd $(srcdir) && $(MAKEINFO) --no-split --no-headers --output gambit-c.txt gambit-c.txi) || (cp gambit-c.txi $@ && echo "*** $@ could not be built") + (cd $(srcdir) && $(MAKEINFO) --no-split --no-headers --output gambit-c.txt gambit-c.txi) || (echo "*** $@ could not be built (perhaps $(MAKEINFO) is not installed?)" > $@) version.txi: stamp.vti diff --git a/include/stamp.h b/include/stamp.h index 338b960..f8b73c2 100644 --- a/include/stamp.h +++ b/include/stamp.h @@ -3,4 +3,4 @@ */ #define ___STAMP_YMD 20090605 -#define ___STAMP_HMS 214244 +#define ___STAMP_HMS 215759 -- 2.11.4.GIT