diff options
author | Robert Yang <liezhi.yang@windriver.com> | 2015-03-10 02:23:13 -0700 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2015-03-16 17:42:02 +0000 |
commit | 9afc9eaa3a6d11ce73b00f5360d5fbd767e0ac00 (patch) | |
tree | 8ef2780877769abe08017826ca3aae22b527d28a | |
parent | 40e15f07f657464cf5ac7a0ea0af5cd2a8d57062 (diff) | |
download | poky-9afc9eaa3a6d11ce73b00f5360d5fbd767e0ac00.tar.gz |
mtd-utils: disable parallel build
Disable parallel build because of:
git/.compr.c.dep:46: warning: NUL character seen; rest of line ignored
git/.compr.c.dep:47: *** missing separator. Stop.
Because both mkfs.jffs2 and mkfs.ubifs depend on compr.c, and
.compr.c.dep may generate twice at the same time.
(From OE-Core rev: d7092965166af8c37bfd643becc1473f75a0712d)
Signed-off-by: Robert Yang <liezhi.yang@windriver.com>
Signed-off-by: Ross Burton <ross.burton@intel.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
-rw-r--r-- | meta/recipes-devtools/mtd/mtd-utils_git.bb | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/meta/recipes-devtools/mtd/mtd-utils_git.bb b/meta/recipes-devtools/mtd/mtd-utils_git.bb index 267d1e9407..f934b1763c 100644 --- a/meta/recipes-devtools/mtd/mtd-utils_git.bb +++ b/meta/recipes-devtools/mtd/mtd-utils_git.bb | |||
@@ -30,3 +30,7 @@ FILES_mtd-utils-ubifs = "${sbindir}/mkfs.ubifs ${sbindir}/ubi*" | |||
30 | FILES_mtd-utils-misc = "${sbindir}/nftl* ${sbindir}/ftl* ${sbindir}/rfd* ${sbindir}/doc* ${sbindir}/serve_image ${sbindir}/recv_image" | 30 | FILES_mtd-utils-misc = "${sbindir}/nftl* ${sbindir}/ftl* ${sbindir}/rfd* ${sbindir}/doc* ${sbindir}/serve_image ${sbindir}/recv_image" |
31 | 31 | ||
32 | BBCLASSEXTEND = "native" | 32 | BBCLASSEXTEND = "native" |
33 | |||
34 | # git/.compr.c.dep:46: warning: NUL character seen; rest of line ignored | ||
35 | # git/.compr.c.dep:47: *** missing separator. Stop. | ||
36 | PARALLEL_MAKE = "" | ||