diff options
Diffstat (limited to 'src/backend')
-rw-r--r-- | src/backend/catalog/Makefile | 3 | ||||
-rw-r--r-- | src/backend/common.mk | 2 |
2 files changed, 3 insertions, 2 deletions
diff --git a/src/backend/catalog/Makefile b/src/backend/catalog/Makefile index c4d3f3c1dcc..eca15af42f1 100644 --- a/src/backend/catalog/Makefile +++ b/src/backend/catalog/Makefile @@ -62,7 +62,8 @@ schemapg.h: postgres.bki ; # even in distribution tarballs. So this is cheating a bit, but it # will achieve the goal of updating the version number when it # changes. -postgres.bki: genbki.pl Catalog.pm $(POSTGRES_BKI_SRCS) $(top_srcdir)/configure +postgres.bki: genbki.pl Catalog.pm $(POSTGRES_BKI_SRCS) $(top_srcdir)/configure $(top_srcdir)/src/include/catalog/duplicate_oids + cd $(top_srcdir)/src/include/catalog && ./duplicate_oids $(PERL) -I $(catalogdir) $< $(pg_includes) --set-version=$(MAJORVERSION) $(POSTGRES_BKI_SRCS) .PHONY: install-data diff --git a/src/backend/common.mk b/src/backend/common.mk index 2e56151e2b4..5d599dbd0ca 100644 --- a/src/backend/common.mk +++ b/src/backend/common.mk @@ -45,4 +45,4 @@ clean: clean-local clean-local: rm -f $(subsysfilename) $(OBJS) -$(call recurse,coverage maintainer-check) +$(call recurse,coverage) |