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

configure's LIBOBJS.  Should fix buildfarm failures.
This commit is contained in:
Bruce Momjian 2010-11-25 13:19:31 -05:00
parent afd7d9adca
commit 742ac738c3
1 changed files with 1 additions and 1 deletions

View File

@ -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 \