For libpq/Makefile OPT_PGPORT, remove .o extension after we test
authorBruce Momjian <[email protected]>
Thu, 25 Nov 2010 18:19:31 +0000 (13:19 -0500)
committerBruce Momjian <[email protected]>
Thu, 25 Nov 2010 18:19:31 +0000 (13:19 -0500)
configure's LIBOBJS.  Should fix buildfarm failures.

src/interfaces/libpq/Makefile

index 0be6a72301c2436cea57d1e7bb74e6bfc761bdd7..6cd85ea0d033a5a61a5789878f58921d8357bb1c 100644 (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 \