From: Saul Wold Date: Tue, 18 Oct 2011 16:44:27 +0000 (-0700) Subject: ghostscript: Disable parallel make due to install issues X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=f9257c39904fee1f4a4bcb9d2503e81bb83a95c2;p=thirdparty%2Fopenembedded%2Fopenembedded-core-contrib.git ghostscript: Disable parallel make due to install issues ghostscript uses a script called instcopy to install files first to temp dir and then rm's and copies dirs|files to the final destination. When parallel make happens multiple threads of this runs and tries to remove existing directories with contents, not a good thing, therefore disable parallel make for install. (From OE-Core rev: 9ef39459383f38cd45203e1f9be046d6100268b8) Signed-off-by: Saul Wold Signed-off-by: Richard Purdie --- diff --git a/meta/recipes-extended/ghostscript/ghostscript_9.02.bb b/meta/recipes-extended/ghostscript/ghostscript_9.02.bb index 9b21c669562..1d48cce2b80 100644 --- a/meta/recipes-extended/ghostscript/ghostscript_9.02.bb +++ b/meta/recipes-extended/ghostscript/ghostscript_9.02.bb @@ -90,3 +90,7 @@ do_install_virtclass-native () { } BBCLASSEXTEND = "native" + +# Ghostscript install tool 'instcopy' tries to remove already created +# directories during install and parallel make causes problems. +PARALLEL_MAKEINST=""