From: Tom Lane Date: Thu, 12 Apr 2018 14:38:48 +0000 (-0400) Subject: Fix YA parallel-make hazard, this one in "make check" in plpython. X-Git-Tag: REL_11_BETA1~252 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=3e110a373b8102221af5436434441cd20eeb68fa;p=thirdparty%2Fpostgresql.git Fix YA parallel-make hazard, this one in "make check" in plpython. We have to ensure that submake-generated-headers is finished before the topmost make run launches any child makes. Discussion: https://postgr.es/m/20180411235843.GG32449@paquier.xyz --- diff --git a/src/pl/plpython/Makefile b/src/pl/plpython/Makefile index 653fe644ee6..c17015bbdf5 100644 --- a/src/pl/plpython/Makefile +++ b/src/pl/plpython/Makefile @@ -131,7 +131,7 @@ installcheck: submake-pg-regress .PHONY: submake-pg-regress -submake-pg-regress: +submake-pg-regress: | submake-generated-headers $(MAKE) -C $(top_builddir)/src/test/regress pg_regress$(X) clean distclean: clean-lib