Skip to content

Commit b6d4522

Browse files
committed
Remove generation of repl_gram.h
It was apparently never necessary.
1 parent 26fe564 commit b6d4522

File tree

3 files changed

+1
-5
lines changed

3 files changed

+1
-5
lines changed

src/backend/Makefile

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -311,7 +311,6 @@ maintainer-clean: distclean
311311
catalog/postgres.description \
312312
catalog/postgres.shdescription \
313313
replication/repl_gram.c \
314-
replication/repl_gram.h \
315314
replication/repl_scanner.c \
316315
utils/fmgroids.h \
317316
utils/fmgrtab.c \

src/backend/replication/.gitignore

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,2 @@
11
/repl_gram.c
2-
/repl_gram.h
32
/repl_scanner.c

src/backend/replication/Makefile

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -22,11 +22,9 @@ include $(top_srcdir)/src/backend/common.mk
2222
# repl_scanner is compiled as part of repl_gram
2323
repl_gram.o: repl_scanner.c
2424

25-
# See notes in src/backend/parser/Makefile about the following two rules
26-
2725
repl_gram.c: repl_gram.y
2826
ifdef BISON
29-
$(BISON) -d $(BISONFLAGS) -o $@ $<
27+
$(BISON) $(BISONFLAGS) -o $@ $<
3028
else
3129
@$(missing) bison $< $@
3230
endif

0 commit comments

Comments
 (0)