From ab393fbef17f5513418eff10d4d776658c5b7bec Mon Sep 17 00:00:00 2001 From: Jon Trulson Date: Sat, 30 Nov 2019 20:45:50 -0700 Subject: [PATCH] localization: disable parallel builds for app-defaults, types, and config These use the 'merge' utility which hardcodes temp files and the like - it cannot be run with other instances without generating bogus errors and occasionally coredumping. :( --- cde/programs/localized/templates/app-defaults.am | 4 ++++ cde/programs/localized/templates/config.am | 4 ++++ cde/programs/localized/templates/types.am | 4 ++++ 3 files changed, 12 insertions(+) diff --git a/cde/programs/localized/templates/app-defaults.am b/cde/programs/localized/templates/app-defaults.am index e3cacb56..520d5000 100644 --- a/cde/programs/localized/templates/app-defaults.am +++ b/cde/programs/localized/templates/app-defaults.am @@ -1,5 +1,9 @@ # process the app-defaults files... +# We can't do parallel builds here because MERGE is rather dumb and +# hardcodes file names and the like. +.NOTPARALLEL: + #NOTYET - Dtinfo BUILT_SOURCES = Dthelpview Dtimsstart Dtlogin Dthello Dtsession \ diff --git a/cde/programs/localized/templates/config.am b/cde/programs/localized/templates/config.am index 8cffb308..988b4101 100644 --- a/cde/programs/localized/templates/config.am +++ b/cde/programs/localized/templates/config.am @@ -1,5 +1,9 @@ # process the config files... +# We can't do parallel builds here because MERGE is rather dumb and +# hardcodes file names and the like. +.NOTPARALLEL: + BUILT_SOURCES = sys.resources sys.session sys.font sys.dtwmrc \ Xresources dtfile.config home.session current.session \ display.home.session display.current.session diff --git a/cde/programs/localized/templates/types.am b/cde/programs/localized/templates/types.am index 17a1e7ac..0d98615a 100644 --- a/cde/programs/localized/templates/types.am +++ b/cde/programs/localized/templates/types.am @@ -1,5 +1,9 @@ # process the types files... +# We can't do parallel builds here because MERGE is rather dumb and +# hardcodes file names and the like. +.NOTPARALLEL: + BUILT_SOURCES = autoStart.dt user-prefs.dt uxstd.dt dt.dt develop.dt \ datatypes.dt dtappman.dt dtfile.dt dtims.dt dtinfo.dt \ dtpad.dt xclients.dt dthelp.dt dthelpprint.dt print.dt \ -- 2.25.1