From: Peter Eisentraut Date: Fri, 1 Aug 2003 16:12:32 +0000 (+0000) Subject: While having a parallel-make-safe genbki.sh is good, it's better not to X-Git-Url: http://git.postgresql.org/gitweb/static/gitweb.js?a=commitdiff_plain;h=6ecb1957dc515bea787edda139affc71eb7a962f;p=users%2Fbernd%2Fpostgres.git While having a parallel-make-safe genbki.sh is good, it's better not to uselessly invoke it in parallel in the first place. --- diff --git a/src/backend/catalog/Makefile b/src/backend/catalog/Makefile index cf5b5a2feb..9430d1b6a3 100644 --- a/src/backend/catalog/Makefile +++ b/src/backend/catalog/Makefile @@ -37,7 +37,10 @@ POSTGRES_BKI_SRCS := $(addprefix $(top_srcdir)/src/include/catalog/,\ pg_includes := $(sort -I$(top_srcdir)/src/include -I$(top_builddir)/src/include) -postgres.bki postgres.description: genbki.sh $(POSTGRES_BKI_SRCS) \ +# see explanation in ../parser/Makefile +postgres.description: postgres.bki ; + +postgres.bki: genbki.sh $(POSTGRES_BKI_SRCS) \ $(top_srcdir)/src/include/postgres_ext.h $(top_builddir)/src/include/pg_config_manual.h CPP='$(CPP)' AWK='$(AWK)' $(SHELL) $< $(BKIOPTS) -o postgres $(pg_includes) $(POSTGRES_BKI_SRCS) --set-version=$(VERSION)