aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorNoah Misch <noah@leadboat.com>2016-08-23 23:40:38 -0400
committerNoah Misch <noah@leadboat.com>2016-08-23 23:40:38 -0400
commitb6418a0919c2c161cf2ed65bc930a06c9c2d85da (patch)
treeaecfac64e870b376c32eb4a4dfa987ce3b2df647
parent71e006f031310f77ab72881c47a7d8f41df748bb (diff)
downloadpostgresql-b6418a0919c2c161cf2ed65bc930a06c9c2d85da.tar.gz
postgresql-b6418a0919c2c161cf2ed65bc930a06c9c2d85da.zip
Build libpgfeutils before pg_isready.
Every program having -lpgfeutils in LDFLAGS must have this dependency, whether or not the program uses a libpgfeutils symbol. Back-patch to 9.6, where libpgfeutils was introduced.
-rw-r--r--src/bin/scripts/Makefile2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/bin/scripts/Makefile b/src/bin/scripts/Makefile
index 8c107b1ba43..c6ad4e75526 100644
--- a/src/bin/scripts/Makefile
+++ b/src/bin/scripts/Makefile
@@ -35,7 +35,7 @@ dropuser: dropuser.o common.o | submake-libpq submake-libpgport submake-libpgfeu
clusterdb: clusterdb.o common.o | submake-libpq submake-libpgport submake-libpgfeutils
vacuumdb: vacuumdb.o common.o | submake-libpq submake-libpgport submake-libpgfeutils
reindexdb: reindexdb.o common.o | submake-libpq submake-libpgport submake-libpgfeutils
-pg_isready: pg_isready.o common.o | submake-libpq submake-libpgport
+pg_isready: pg_isready.o common.o | submake-libpq submake-libpgport submake-libpgfeutils
install: all installdirs
$(INSTALL_PROGRAM) createdb$(X) '$(DESTDIR)$(bindir)'/createdb$(X)