diff options
author | Tom Lane <tgl@sss.pgh.pa.us> | 2016-08-22 08:01:12 -0400 |
---|---|---|
committer | Tom Lane <tgl@sss.pgh.pa.us> | 2016-08-22 08:01:12 -0400 |
commit | 234309fa87739f7a3ac99de815d181b50f2542e7 (patch) | |
tree | 95636d41cd6fb10385fda74371877ac10fccd871 /src | |
parent | 9132c014290d02435999c81892fa8b0b384497d8 (diff) | |
download | postgresql-234309fa87739f7a3ac99de815d181b50f2542e7.tar.gz postgresql-234309fa87739f7a3ac99de815d181b50f2542e7.zip |
initdb now needs submake-libpq and submake-libpgfeutils.
More fallout from commit a00c58314. Pointed out by Michael Paquier.
Diffstat (limited to 'src')
-rw-r--r-- | src/bin/initdb/Makefile | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/bin/initdb/Makefile b/src/bin/initdb/Makefile index 531cc979a48..394eae08759 100644 --- a/src/bin/initdb/Makefile +++ b/src/bin/initdb/Makefile @@ -30,7 +30,7 @@ OBJS= initdb.o findtimezone.o localtime.o encnames.o $(WIN32RES) all: initdb -initdb: $(OBJS) | submake-libpgport +initdb: $(OBJS) | submake-libpq submake-libpgport submake-libpgfeutils $(CC) $(CFLAGS) $(OBJS) $(LDFLAGS) $(LDFLAGS_EX) $(LIBS) -o $@$(X) # We used to pull in all of libpq to get encnames.c, but that |