Skip to content

Commit e5bf0c3

Browse files
committed
Fix build of contrib/pg_xlogdump.
rmgrdesc.c is not auto-generated now, though it apparently was the last time the Makefile was updated.
1 parent ca9c666 commit e5bf0c3

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

contrib/pg_xlogdump/Makefile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ OBJS = pg_xlogdump.o compat.o xlogreader.o rmgrdesc.o \
1010
RMGRDESCSOURCES = $(notdir $(wildcard $(top_srcdir)/src/backend/access/rmgrdesc/*desc.c))
1111
RMGRDESCOBJS = $(patsubst %.c,%.o,$(RMGRDESCSOURCES))
1212

13-
EXTRA_CLEAN = $(RMGRDESCSOURCES) xlogreader.c rmgrdesc.c
13+
EXTRA_CLEAN = $(RMGRDESCSOURCES) xlogreader.c
1414

1515
ifdef USE_PGXS
1616
PG_CONFIG = pg_config
@@ -25,7 +25,7 @@ endif
2525

2626
override CPPFLAGS := -DFRONTEND $(CPPFLAGS)
2727

28-
rmgrdesc.c xlogreader.c: % : $(top_srcdir)/src/backend/access/transam/%
28+
xlogreader.c: % : $(top_srcdir)/src/backend/access/transam/%
2929
rm -f $@ && $(LN_S) $< .
3030

3131
$(RMGRDESCSOURCES): % : $(top_srcdir)/src/backend/access/rmgrdesc/%

0 commit comments

Comments
 (0)