diff options
author | Peter Eisentraut <peter_e@gmx.net> | 2013-10-10 21:53:34 -0400 |
---|---|---|
committer | Peter Eisentraut <peter_e@gmx.net> | 2013-10-10 21:53:34 -0400 |
commit | 956f2db49006ea236994c61b0fe31759e2304a24 (patch) | |
tree | 75d73482749882a67e6a92699fb4e4306fcefb06 | |
parent | 8238d1ed8f9682e74f4bb7d0bcdef8bae57efdf1 (diff) | |
download | postgresql-956f2db49006ea236994c61b0fe31759e2304a24.tar.gz postgresql-956f2db49006ea236994c61b0fe31759e2304a24.zip |
doc: Move check-tabs target into html target
The previous plan of having the check-tabs target a prerequisite of
"all" and "distprep" caused make distcheck to fail because make -q
distprep would never be satisfied. Put check-tabs into the html target
instead, so it is only called when a build actually happens.
-rw-r--r-- | doc/src/sgml/Makefile | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/doc/src/sgml/Makefile b/doc/src/sgml/Makefile index a38a08545e0..0ca6f58c6a0 100644 --- a/doc/src/sgml/Makefile +++ b/doc/src/sgml/Makefile @@ -22,9 +22,9 @@ top_builddir = ../../.. include $(top_builddir)/src/Makefile.global -all: check-tabs html man +all: html man -distprep: check-tabs html distprep-man +distprep: html distprep-man ifndef JADE @@ -100,6 +100,7 @@ draft: postgres.sgml $(ALMOSTALLSGML) stylesheet.dsl html: html-stamp html-stamp: postgres.sgml $(ALLSGML) stylesheet.dsl + $(MAKE) check-tabs $(MKDIR_P) html $(JADE.html.call) -i include-index $< cp $(srcdir)/stylesheet.css html/ |