From e5914dd108d829336aa9c6ead82eb2794adeeaf9 Mon Sep 17 00:00:00 2001 From: Jon Trulson Date: Sat, 5 Sep 2020 16:20:13 -0600 Subject: [PATCH] dtappbuilder/src/ab: disable parallel builds Due to the way dtcodegen works, we can't use parallel builds (-j) in this directory without corrupting things and generating build errors. --- cde/programs/dtappbuilder/src/ab/Makefile.am | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/cde/programs/dtappbuilder/src/ab/Makefile.am b/cde/programs/dtappbuilder/src/ab/Makefile.am index ef119fbe5..f54178d1e 100644 --- a/cde/programs/dtappbuilder/src/ab/Makefile.am +++ b/cde/programs/dtappbuilder/src/ab/Makefile.am @@ -12,6 +12,10 @@ DTCODEGENCAT = NLSPATH=$(top_builddir)/programs/dtappbuilder/src/abmf/dtcodegen. DTCODEGEN = $(DTCODEGENCAT) ../abmf/dtcodegen +# Due to the way dtcodegen works, especially with the -merge option, we need +# to disable parallel builds (-j) here to avoid corrupting everything. +.NOTPARALLEL: + if BSD UTILLIB = -lutil endif