summaryrefslogtreecommitdiffstats
path: root/meta/recipes-extended/ghostscript
diff options
context:
space:
mode:
authorSaul Wold <sgw@linux.intel.com>2011-10-18 09:44:27 -0700
committerRichard Purdie <richard.purdie@linuxfoundation.org>2011-10-20 17:13:36 +0100
commitf9257c39904fee1f4a4bcb9d2503e81bb83a95c2 (patch)
tree1403a49bfa4f153383b8f634d4c93ef4553ff4bd /meta/recipes-extended/ghostscript
parent180caee1e2fff25e5485d822ceabaeb33cc35df0 (diff)
downloadpoky-f9257c39904fee1f4a4bcb9d2503e81bb83a95c2.tar.gz
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 <sgw@linux.intel.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'meta/recipes-extended/ghostscript')
-rw-r--r--meta/recipes-extended/ghostscript/ghostscript_9.02.bb4
1 files changed, 4 insertions, 0 deletions
diff --git a/meta/recipes-extended/ghostscript/ghostscript_9.02.bb b/meta/recipes-extended/ghostscript/ghostscript_9.02.bb
index 9b21c66956..1d48cce2b8 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 () {
90} 90}
91 91
92BBCLASSEXTEND = "native" 92BBCLASSEXTEND = "native"
93
94# Ghostscript install tool 'instcopy' tries to remove already created
95# directories during install and parallel make causes problems.
96PARALLEL_MAKEINST=""