From f77fa9db72c6aeb86687fbaff47551f2bccc20bd Mon Sep 17 00:00:00 2001 From: Bruce Momjian Date: Sat, 15 Dec 2007 10:28:21 +0000 Subject: [PATCH] Use clearer error message for gmake postgres.pdf: Makefile:171: *** Invalid target; use postgres-A4.pdf or postgres-US.pdf as targets. Stop. --- doc/src/sgml/Makefile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/doc/src/sgml/Makefile b/doc/src/sgml/Makefile index a09ae13f45..642758e276 100644 --- a/doc/src/sgml/Makefile +++ b/doc/src/sgml/Makefile @@ -162,13 +162,13 @@ JADE.tex.call = $(JADE) $(JADEFLAGS) $(SGMLINCLUDE) $(CATALOG) -d $(srcdir)/styl # PostScript from TeX postgres.ps: - $(error Use "$(MAKE) postgres-A4.ps" or "$(MAKE) postgres-US.ps") + $(error Invalid target; use postgres-A4.ps or postgres-US.ps as targets) %.ps: %.dvi dvips -o $@ $< postgres.pdf: - $(error Use "$(MAKE) postgres-A4.pdf" or "$(MAKE) postgres-US.pdf") + $(error Invalid target; use postgres-A4.pdf or postgres-US.pdf as targets) %.pdf: %.tex-pdf @rm -f $*.aux $*.log $*.out -- 2.39.5