mirror of
https://github.com/postgres/postgres.git
synced 2026-02-17 01:31:07 -05:00
Fix build of contrib/pg_xlogdump.
rmgrdesc.c is not auto-generated now, though it apparently was the last time the Makefile was updated.
This commit is contained in:
parent
ca9c666602
commit
e5bf0c376e
1 changed files with 2 additions and 2 deletions
|
|
@ -10,7 +10,7 @@ OBJS = pg_xlogdump.o compat.o xlogreader.o rmgrdesc.o \
|
|||
RMGRDESCSOURCES = $(notdir $(wildcard $(top_srcdir)/src/backend/access/rmgrdesc/*desc.c))
|
||||
RMGRDESCOBJS = $(patsubst %.c,%.o,$(RMGRDESCSOURCES))
|
||||
|
||||
EXTRA_CLEAN = $(RMGRDESCSOURCES) xlogreader.c rmgrdesc.c
|
||||
EXTRA_CLEAN = $(RMGRDESCSOURCES) xlogreader.c
|
||||
|
||||
ifdef USE_PGXS
|
||||
PG_CONFIG = pg_config
|
||||
|
|
@ -25,7 +25,7 @@ endif
|
|||
|
||||
override CPPFLAGS := -DFRONTEND $(CPPFLAGS)
|
||||
|
||||
rmgrdesc.c xlogreader.c: % : $(top_srcdir)/src/backend/access/transam/%
|
||||
xlogreader.c: % : $(top_srcdir)/src/backend/access/transam/%
|
||||
rm -f $@ && $(LN_S) $< .
|
||||
|
||||
$(RMGRDESCSOURCES): % : $(top_srcdir)/src/backend/access/rmgrdesc/%
|
||||
|
|
|
|||
Loading…
Reference in a new issue