Skip to content
Snippets Groups Projects
Commit 3f330440 authored by Tom Lane's avatar Tom Lane
Browse files

Propagate with_system_tzdata setting into initdb build.

findtimezone.c needs to know this setting too.  Per Peter Eisentraut.
parent 8caf6132
No related branches found
No related tags found
No related merge requests found
......@@ -18,6 +18,11 @@ include $(top_builddir)/src/Makefile.global
override CPPFLAGS := -DFRONTEND -I$(libpq_srcdir) -I$(top_srcdir)/src/timezone $(CPPFLAGS)
# use system timezone data?
ifneq (,$(with_system_tzdata))
override CPPFLAGS += '-DSYSTEMTZDIR="$(with_system_tzdata)"'
endif
OBJS= initdb.o findtimezone.o localtime.o encnames.o pqsignal.o $(WIN32RES)
all: initdb
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment