summaryrefslogtreecommitdiff
path: root/src/port/Makefile
diff options
context:
space:
mode:
authorMagnus Hagander <magnus@hagander.net>2013-01-01 18:15:57 +0100
committerMagnus Hagander <magnus@hagander.net>2013-01-01 18:15:57 +0100
commitf5d4bdd3a5c1b7987a257b2a64e977501338af0d (patch)
tree2e0528df81881a91c687ac1551cd3a3883b47890 /src/port/Makefile
parenta266f7dd93bcac8d8543df46efa2968226ddc81f (diff)
downloadpostgresql-f5d4bdd3a5c1b7987a257b2a64e977501338af0d.tar.gz
Unify some tar functionality across different parts
Move some of the tar functionality that existed mostly duplicated in both pg_dump and the walsender basebackup functionality into port/tar.c instead, so it can be used from both. It will also be used by pg_basebackup in the future, which would've caused a third copy of it around. Zoltan Boszormenyi and Magnus Hagander
Diffstat (limited to 'src/port/Makefile')
-rw-r--r--src/port/Makefile2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/port/Makefile b/src/port/Makefile
index bace576d80..a4ceb0c0e8 100644
--- a/src/port/Makefile
+++ b/src/port/Makefile
@@ -32,7 +32,7 @@ LIBS += $(PTHREAD_LIBS)
OBJS = $(LIBOBJS) chklocale.o dirmod.o erand48.o exec.o fls.o inet_net_ntop.o \
noblock.o path.o pgcheckdir.o pg_crc.o pgmkdirp.o pgsleep.o \
- pgstrcasecmp.o qsort.o qsort_arg.o sprompt.o thread.o
+ pgstrcasecmp.o qsort.o qsort_arg.o sprompt.o tar.o thread.o
# foo_srv.o and foo.o are both built from foo.c, but only foo.o has -DFRONTEND
OBJS_SRV = $(OBJS:%.o=%_srv.o)