Location via proxy:   [ UP ]  
[Report a bug]   [Manage cookies]                
Skip to content

Commit 95261c4

Browse files
committed
While having a parallel-make-safe genbki.sh is good, it's better not to
uselessly invoke it in parallel in the first place.
1 parent 4f7df90 commit 95261c4

File tree

1 file changed

+5
-2
lines changed

1 file changed

+5
-2
lines changed

src/backend/catalog/Makefile

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
#
33
# Makefile for backend/catalog
44
#
5-
# $Header: /cvsroot/pgsql/src/backend/catalog/Makefile,v 1.46 2003/04/06 22:45:22 petere Exp $
5+
# $Header: /cvsroot/pgsql/src/backend/catalog/Makefile,v 1.47 2003/08/01 16:12:32 petere Exp $
66
#
77
#-------------------------------------------------------------------------
88

@@ -37,7 +37,10 @@ POSTGRES_BKI_SRCS := $(addprefix $(top_srcdir)/src/include/catalog/,\
3737

3838
pg_includes := $(sort -I$(top_srcdir)/src/include -I$(top_builddir)/src/include)
3939

40-
postgres.bki postgres.description: genbki.sh $(POSTGRES_BKI_SRCS) \
40+
# see explanation in ../parser/Makefile
41+
postgres.description: postgres.bki ;
42+
43+
postgres.bki: genbki.sh $(POSTGRES_BKI_SRCS) \
4144
$(top_srcdir)/src/include/postgres_ext.h $(top_builddir)/src/include/pg_config_manual.h
4245
CPP='$(CPP)' AWK='$(AWK)' $(SHELL) $< $(BKIOPTS) -o postgres $(pg_includes) $(POSTGRES_BKI_SRCS) --set-version=$(VERSION)
4346

0 commit comments

Comments
 (0)