Re: [cdesktopenv-devel] [PATCH] fix spurious compilation failure

2021-02-22 Thread Jon Trulson
Merged, thanks!

I had the same problem with pass1.  It usually worked, but would
randomly fail.

-jon

On 2/22/21 5:24 PM, Chase via cdesktopenv-devel wrote:
> Sometimes when compiling dthelp, the targets somehow get run out of
> order and files aren't being generated, so I am disabling parallel
> building in the build directory of the pass2 and canon1 parsers.
>
> Thank you for your time,
> -Chase
>
>
>
>
> ___
> cdesktopenv-devel mailing list
> cdesktopenv-devel@lists.sourceforge.net
> https://lists.sourceforge.net/lists/listinfo/cdesktopenv-devel

-- 
Jon Trulson

  "Entropy.  It isn't what it used to be."
   -- Sheldon

___
cdesktopenv-devel mailing list
cdesktopenv-devel@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/cdesktopenv-devel


[cdesktopenv-devel] [PATCH] fix spurious compilation failure

2021-02-22 Thread Chase via cdesktopenv-devel
Sometimes when compiling dthelp, the targets somehow get run out of order and 
files aren't being generated, so I am disabling parallel building in the build 
directory of the pass2 and canon1 parsers.

Thank you for your time,
-ChaseFrom b78fcd5ce58fb11221c59850883400a326e78222 Mon Sep 17 00:00:00 2001
From: Chase 
Date: Mon, 22 Feb 2021 18:20:19 -0600
Subject: [PATCH] dthelp: fix spurious compilation failure

---
 cde/programs/dthelp/parser/canon1/build/Makefile.am | 2 ++
 cde/programs/dthelp/parser/pass2/build/Makefile.am  | 2 ++
 2 files changed, 4 insertions(+)

diff --git a/cde/programs/dthelp/parser/canon1/build/Makefile.am b/cde/programs/dthelp/parser/canon1/build/Makefile.am
index e82964b05..7b169c3bb 100644
--- a/cde/programs/dthelp/parser/canon1/build/Makefile.am
+++ b/cde/programs/dthelp/parser/canon1/build/Makefile.am
@@ -1,5 +1,7 @@
 MAINTAINERCLEANFILES = Makefile.in
 
+.NOTPARALLEL:
+
 noinst_PROGRAMS = build
 
 HELPTAG   = ..
diff --git a/cde/programs/dthelp/parser/pass2/build/Makefile.am b/cde/programs/dthelp/parser/pass2/build/Makefile.am
index 582bb0f43..c2fc5e0b0 100644
--- a/cde/programs/dthelp/parser/pass2/build/Makefile.am
+++ b/cde/programs/dthelp/parser/pass2/build/Makefile.am
@@ -1,5 +1,7 @@
 MAINTAINERCLEANFILES = Makefile.in
 
+.NOTPARALLEL:
+
 noinst_PROGRAMS = build
 
 HTAG2   = ..
-- 
2.17.1

___
cdesktopenv-devel mailing list
cdesktopenv-devel@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/cdesktopenv-devel