Commit 0bc2a8ca authored by Peter Eisentraut's avatar Peter Eisentraut

Build src/test/regress/README during tarball making like the other

generated text files.  Fix build of that file, too.

Put the text files in the right place during make dist, so there are no
extra manual steps required anymore.
parent 9e0eff05
# #
# PostgreSQL top level makefile # PostgreSQL top level makefile
# #
# $PostgreSQL: pgsql/GNUmakefile.in,v 1.43 2006/04/03 18:47:41 petere Exp $ # $PostgreSQL: pgsql/GNUmakefile.in,v 1.44 2006/04/06 18:54:36 petere Exp $
# #
subdir = subdir =
...@@ -108,6 +108,10 @@ distdir: ...@@ -108,6 +108,10 @@ distdir:
fi || exit; \ fi || exit; \
done done
$(MAKE) -C $(distdir) distprep $(MAKE) -C $(distdir) distprep
$(MAKE) -C $(distdir)/doc/src/sgml/ HISTORY INSTALL regress_README
cp $(distdir)/doc/src/sgml/HISTORY $(distdir)/
cp $(distdir)/doc/src/sgml/INSTALL $(distdir)/
cp $(distdir)/doc/src/sgml/regress_README $(distdir)/src/test/regress/README
$(MAKE) -C $(distdir) distclean $(MAKE) -C $(distdir) distclean
rm -f $(distdir)/README.CVS rm -f $(distdir)/README.CVS
......
...@@ -2,7 +2,7 @@ ...@@ -2,7 +2,7 @@
# #
# PostgreSQL documentation makefile # PostgreSQL documentation makefile
# #
# $PostgreSQL: pgsql/doc/src/sgml/Makefile,v 1.75 2005/01/04 21:03:30 petere Exp $ # $PostgreSQL: pgsql/doc/src/sgml/Makefile,v 1.76 2006/04/06 18:54:36 petere Exp $
# #
#---------------------------------------------------------------------------- #----------------------------------------------------------------------------
...@@ -196,7 +196,8 @@ HISTORY.html: release.sgml ...@@ -196,7 +196,8 @@ HISTORY.html: release.sgml
regress_README.html: regress.sgml regress_README.html: regress.sgml
( echo '<!doctype chapter PUBLIC "-//OASIS//DTD DocBook V4.2//EN" ['; \ ( echo '<!doctype chapter PUBLIC "-//OASIS//DTD DocBook V4.2//EN" ['; \
echo '<!entity % standalone-ignore "IGNORE"> ]>'; \ echo '<!entity % standalone-ignore "IGNORE">'; \
echo '<!entity % standalone-include "INCLUDE"> ]>'; \
cat $< ) >tempfile_regress_README.sgml cat $< ) >tempfile_regress_README.sgml
$(JADE.text) -V nochunks tempfile_regress_README.sgml >$@ $(JADE.text) -V nochunks tempfile_regress_README.sgml >$@
rm tempfile_regress_README.sgml rm tempfile_regress_README.sgml
......
<!-- $PostgreSQL: pgsql/doc/src/sgml/regress.sgml,v 1.50 2006/01/22 05:20:32 neilc Exp $ --> <!-- $PostgreSQL: pgsql/doc/src/sgml/regress.sgml,v 1.51 2006/04/06 18:54:36 petere Exp $ -->
<chapter id="regress"> <chapter id="regress">
<title id="regress-title">Regression Tests</title> <title id="regress-title">Regression Tests</title>
...@@ -313,7 +313,9 @@ exclusion of those that don't. ...@@ -313,7 +313,9 @@ exclusion of those that don't.
If the <literal>errors</literal> test results in a server crash If the <literal>errors</literal> test results in a server crash
at the <literal>select infinite_recurse()</> command, it means that at the <literal>select infinite_recurse()</> command, it means that
the platform's limit on process stack size is smaller than the the platform's limit on process stack size is smaller than the
<xref linkend="guc-max-stack-depth"> parameter indicates. This <![%standalone-ignore;[<xref linkend="guc-max-stack-depth">]]>
<![%standalone-include;[<literal>max_stack_depth</literal>]]>
parameter indicates. This
can be fixed by running the postmaster under a higher stack can be fixed by running the postmaster under a higher stack
size limit (4MB is recommended with the default value of size limit (4MB is recommended with the default value of
<varname>max_stack_depth</>). If you are unable to do that, an <varname>max_stack_depth</>). If you are unable to do that, an
......
This diff is collapsed.
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment