summaryrefslogtreecommitdiff
path: root/src/timezone/tznames
diff options
context:
space:
mode:
authorPeter Eisentraut2007-02-09 15:56:00 +0000
committerPeter Eisentraut2007-02-09 15:56:00 +0000
commitc138b966d42e69446b52a3e65a596f0401c41a33 (patch)
tree1542dc3cf0db17ec247d9c9309bdbac419c63720 /src/timezone/tznames
parentd7fee591dbf26e4f0ca52b05cee4b34ea84b7cd6 (diff)
Replace useless uses of := by = in makefiles.
Diffstat (limited to 'src/timezone/tznames')
-rw-r--r--src/timezone/tznames/Makefile10
1 files changed, 5 insertions, 5 deletions
diff --git a/src/timezone/tznames/Makefile b/src/timezone/tznames/Makefile
index aca2c595963..8f1c6447b64 100644
--- a/src/timezone/tznames/Makefile
+++ b/src/timezone/tznames/Makefile
@@ -4,7 +4,7 @@
# Makefile for the timezone names
# IDENTIFICATION
-# $PostgreSQL: pgsql/src/timezone/tznames/Makefile,v 1.1 2006/07/25 03:51:23 tgl Exp $
+# $PostgreSQL: pgsql/src/timezone/tznames/Makefile,v 1.2 2007/02/09 15:56:00 petere Exp $
#
#-------------------------------------------------------------------------
@@ -12,12 +12,12 @@ subdir = src/timezone/tznames
top_builddir = ../../..
include $(top_builddir)/src/Makefile.global
-TZNAMES_TEMPLATES := Africa.txt America.txt Antarctica.txt Asia.txt \
+TZNAMES_TEMPLATES = Africa.txt America.txt Antarctica.txt Asia.txt \
Atlantic.txt Australia.txt Etc.txt Europe.txt Indian.txt Pacific.txt
-TZNAMES_TEMPLATES_FILES := $(TZNAMES_TEMPLATES:%=$(srcdir)/%)
+TZNAMES_TEMPLATES_FILES = $(TZNAMES_TEMPLATES:%=$(srcdir)/%)
-TZNAMES_SETS := Default Australia India
-TZNAMES_SETS_FILES := $(TZNAMES_SETS:%=$(srcdir)/%)
+TZNAMES_SETS = Default Australia India
+TZNAMES_SETS_FILES = $(TZNAMES_SETS:%=$(srcdir)/%)
install: installdirs
$(INSTALL_DATA) $(TZNAMES_TEMPLATES_FILES) '$(DESTDIR)$(datadir)/timezonesets'