diff options
author | Neil Conway | 2007-02-09 20:40:13 +0000 |
---|---|---|
committer | Neil Conway | 2007-02-09 20:40:13 +0000 |
commit | fc7de7c2cb1015764b21e7a95369a5eb2ce425de (patch) | |
tree | fc927d3f0225fd28ac9af9fd14b73ca7320bc9c5 /doc/src | |
parent | 6be40def01a1ca5c673427b2aa47936e6fcba93f (diff) |
Unbreak the SGML doc build: ":=" is needed to assign to variables if
the RHS of the assignment expands to a reference to the LHS.
Diffstat (limited to 'doc/src')
-rw-r--r-- | doc/src/sgml/Makefile | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/doc/src/sgml/Makefile b/doc/src/sgml/Makefile index 2e6bda7cdb2..666e798109c 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.95 2007/02/09 15:55:57 petere Exp $ +# $PostgreSQL: pgsql/doc/src/sgml/Makefile,v 1.96 2007/02/09 20:40:13 neilc Exp $ # #---------------------------------------------------------------------------- @@ -105,7 +105,7 @@ draft: @$(MAKE) DRAFT="Y" html -COLLATEINDEX = LC_ALL=C $(PERL) $(COLLATEINDEX) -f -g +COLLATEINDEX := LC_ALL=C $(PERL) $(COLLATEINDEX) -f -g # bookindex.sgml is required so there is a proper index for all output formats bookindex.sgml: HTML.index |