summaryrefslogtreecommitdiff
path: root/doc/Makefile
diff options
context:
space:
mode:
authorPeter Eisentraut2007-02-09 15:56:00 +0000
committerPeter Eisentraut2007-02-09 15:56:00 +0000
commitc138b966d42e69446b52a3e65a596f0401c41a33 (patch)
tree1542dc3cf0db17ec247d9c9309bdbac419c63720 /doc/Makefile
parentd7fee591dbf26e4f0ca52b05cee4b34ea84b7cd6 (diff)
Replace useless uses of := by = in makefiles.
Diffstat (limited to 'doc/Makefile')
-rw-r--r--doc/Makefile6
1 files changed, 3 insertions, 3 deletions
diff --git a/doc/Makefile b/doc/Makefile
index 5d47b22a348..484dcdc7874 100644
--- a/doc/Makefile
+++ b/doc/Makefile
@@ -4,7 +4,7 @@
#
# Copyright (c) 1994, Regents of the University of California
#
-# $PostgreSQL: pgsql/doc/Makefile,v 1.28 2005/12/09 21:19:34 petere Exp $
+# $PostgreSQL: pgsql/doc/Makefile,v 1.29 2007/02/09 15:55:57 petere Exp $
#
#----------------------------------------------------------------------------
@@ -27,14 +27,14 @@ include $(top_builddir)/src/Makefile.global
ifneq ($(wildcard $(srcdir)/postgres.tar.gz),)
ifneq (,$(docdir))
-found_html := yes
+found_html = yes
endif
endif
ifneq ($(wildcard $(srcdir)/man.tar.gz),)
# SCO OpenServer's man system is sufficiently different to not bother.
ifneq ($(PORTNAME), sco)
-found_man := yes
+found_man = yes
endif
endif