Commit 742ac738 authored by Bruce Momjian's avatar Bruce Momjian

For libpq/Makefile OPT_PGPORT, remove .o extension after we test

configure's LIBOBJS.  Should fix buildfarm failures.
parent afd7d9ad
......@@ -39,7 +39,7 @@ endif
# pgport object files are used by libpq if identified by configure
OPT_PGPORT = $(filter $(addsuffix .o, crypt getaddrinfo inet_aton open snprintf strerror strlcpy win32error), $(LIBOBJS))
OPT_PGPORT = $(basename $(filter $(addsuffix .o, crypt getaddrinfo inet_aton open snprintf strerror strlcpy win32error), $(LIBOBJS)))
OBJS= fe-auth.o fe-connect.o fe-exec.o fe-misc.o fe-print.o fe-lobj.o \
fe-protocol2.o fe-protocol3.o pqexpbuffer.o pqsignal.o fe-secure.o \
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment