diff options
author | Peter Eisentraut <peter_e@gmx.net> | 2003-08-01 16:12:32 +0000 |
---|---|---|
committer | Peter Eisentraut <peter_e@gmx.net> | 2003-08-01 16:12:32 +0000 |
commit | 95261c44d250c1a171e0fcc280185720d364a49c (patch) | |
tree | 9559184ad46a455e2d20aebb310ee52f6f8e2107 /src | |
parent | 4f7df90db0f9c3ed61d12a1d7a9efe0de37f4fe3 (diff) | |
download | postgresql-95261c44d250c1a171e0fcc280185720d364a49c.tar.gz postgresql-95261c44d250c1a171e0fcc280185720d364a49c.zip |
While having a parallel-make-safe genbki.sh is good, it's better not to
uselessly invoke it in parallel in the first place.
Diffstat (limited to 'src')
-rw-r--r-- | src/backend/catalog/Makefile | 7 |
1 files changed, 5 insertions, 2 deletions
diff --git a/src/backend/catalog/Makefile b/src/backend/catalog/Makefile index bf36399daa5..3d8163fe247 100644 --- a/src/backend/catalog/Makefile +++ b/src/backend/catalog/Makefile @@ -2,7 +2,7 @@ # # Makefile for backend/catalog # -# $Header: /cvsroot/pgsql/src/backend/catalog/Makefile,v 1.46 2003/04/06 22:45:22 petere Exp $ +# $Header: /cvsroot/pgsql/src/backend/catalog/Makefile,v 1.47 2003/08/01 16:12:32 petere Exp $ # #------------------------------------------------------------------------- @@ -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) |