Location via proxy:   [ UP ]  
[Report a bug]   [Manage cookies]                
Skip to content

Commit 956f2db

Browse files
committed
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.
1 parent 8238d1e commit 956f2db

File tree

1 file changed

+3
-2
lines changed

1 file changed

+3
-2
lines changed

doc/src/sgml/Makefile

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -22,9 +22,9 @@ top_builddir = ../../..
2222
include $(top_builddir)/src/Makefile.global
2323

2424

25-
all: check-tabs html man
25+
all: html man
2626

27-
distprep: check-tabs html distprep-man
27+
distprep: html distprep-man
2828

2929

3030
ifndef JADE
@@ -100,6 +100,7 @@ draft: postgres.sgml $(ALMOSTALLSGML) stylesheet.dsl
100100
html: html-stamp
101101

102102
html-stamp: postgres.sgml $(ALLSGML) stylesheet.dsl
103+
$(MAKE) check-tabs
103104
$(MKDIR_P) html
104105
$(JADE.html.call) -i include-index $<
105106
cp $(srcdir)/stylesheet.css html/

0 commit comments

Comments
 (0)