summaryrefslogtreecommitdiff
path: root/src/timezone
diff options
context:
space:
mode:
authorPeter Eisentraut <peter_e@gmx.net>2007-02-09 15:56:00 +0000
committerPeter Eisentraut <peter_e@gmx.net>2007-02-09 15:56:00 +0000
commitc138b966d42e69446b52a3e65a596f0401c41a33 (patch)
tree1542dc3cf0db17ec247d9c9309bdbac419c63720 /src/timezone
parentd7fee591dbf26e4f0ca52b05cee4b34ea84b7cd6 (diff)
Replace useless uses of := by = in makefiles.
Diffstat (limited to 'src/timezone')
-rw-r--r--src/timezone/Makefile8
-rw-r--r--src/timezone/tznames/Makefile10
2 files changed, 8 insertions, 10 deletions
diff --git a/src/timezone/Makefile b/src/timezone/Makefile
index 69e79b8536e..3af8c376f89 100644
--- a/src/timezone/Makefile
+++ b/src/timezone/Makefile
@@ -4,7 +4,7 @@
# Makefile for the timezone library
# IDENTIFICATION
-# $PostgreSQL: pgsql/src/timezone/Makefile,v 1.24 2006/07/25 03:51:22 tgl Exp $
+# $PostgreSQL: pgsql/src/timezone/Makefile,v 1.25 2007/02/09 15:56:00 petere Exp $
#
#-------------------------------------------------------------------------
@@ -12,8 +12,6 @@ subdir = src/timezone
top_builddir = ../..
include $(top_builddir)/src/Makefile.global
-override CPPFLAGS := $(CPPFLAGS)
-
# files to build into backend
OBJS= localtime.o strftime.o pgtz.o
@@ -21,9 +19,9 @@ OBJS= localtime.o strftime.o pgtz.o
ZICOBJS= zic.o ialloc.o scheck.o localtime.o
# timezone data files
-TZDATA := africa antarctica asia australasia europe northamerica southamerica \
+TZDATA = africa antarctica asia australasia europe northamerica southamerica \
pacificnew etcetera factory backward systemv solar87 solar88 solar89
-TZDATAFILES := $(TZDATA:%=$(srcdir)/data/%)
+TZDATAFILES = $(TZDATA:%=$(srcdir)/data/%)
all: SUBSYS.o submake-libpgport zic
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'