From d5c861af6c1b87d89e125467d9b424e7ec626db0 Mon Sep 17 00:00:00 2001 From: Bruce Momjian Date: Fri, 5 Feb 2010 19:31:18 +0000 Subject: [PATCH] Previous commit was to have tab checking as part of gmake check. --- doc/src/sgml/Makefile | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/doc/src/sgml/Makefile b/doc/src/sgml/Makefile index 3171ae0306..7cce225a19 100644 --- a/doc/src/sgml/Makefile +++ b/doc/src/sgml/Makefile @@ -2,7 +2,7 @@ # # PostgreSQL documentation makefile # -# $PostgreSQL: pgsql/doc/src/sgml/Makefile,v 1.137 2010/02/05 19:28:39 momjian Exp $ +# $PostgreSQL: pgsql/doc/src/sgml/Makefile,v 1.138 2010/02/05 19:31:18 momjian Exp $ # #---------------------------------------------------------------------------- @@ -345,6 +345,7 @@ clean-man: endif # sqlmansectnum != 7 +# tabs are harmless, but it is best to avoid them in SGML files check-tabs: @( ! grep ' ' $(wildcard $(srcdir)/*.sgml $(srcdir)/ref/*.sgml) ) || (echo "Tabs appear in SGML files"; exit 1)