From 4635d3c527916555773a6eb128fb4a410d585d9d Mon Sep 17 00:00:00 2001 From: Peter Eisentraut Date: Mon, 27 Jun 2011 15:40:55 +0300 Subject: [PATCH] Remove redundant DEF_PGPORT handling DEF_PGPORT already comes in from pg_config.h, so we don't need to pass it in again with a -D option. Apparently a leftover from the shell script conversion. --- src/bin/pg_ctl/Makefile | 6 +----- 1 file changed, 1 insertion(+), 5 deletions(-) diff --git a/src/bin/pg_ctl/Makefile b/src/bin/pg_ctl/Makefile index 00fc682795..6c1b266123 100644 --- a/src/bin/pg_ctl/Makefile +++ b/src/bin/pg_ctl/Makefile @@ -16,7 +16,7 @@ subdir = src/bin/pg_ctl top_builddir = ../../.. include $(top_builddir)/src/Makefile.global -override CPPFLAGS := -DDEF_PGPORT=$(DEF_PGPORT) -I$(libpq_srcdir) $(CPPFLAGS) +override CPPFLAGS := -I$(libpq_srcdir) $(CPPFLAGS) OBJS= pg_ctl.o $(WIN32RES) @@ -36,7 +36,3 @@ uninstall: clean distclean maintainer-clean: rm -f pg_ctl$(X) $(OBJS) - - -# ensure that changes in DEF_PGPORT propagate into object file -pg_ctl.o: pg_ctl.c $(top_builddir)/src/Makefile.global