diff options
author | Adrian Dudau <adrian.dudau@enea.com> | 2016-04-12 16:59:16 +0200 |
---|---|---|
committer | Armin Kuster <akuster808@gmail.com> | 2016-05-02 14:03:02 -0700 |
commit | 93aa4aa192a4a23485126d0a1770812842e528a6 (patch) | |
tree | e894ea5af65e26f772fdbc717edae586df6621bd | |
parent | bf34b1e15a63d0b5dfd3c741c6ccf64a3bd2ba7f (diff) | |
download | meta-openembedded-93aa4aa192a4a23485126d0a1770812842e528a6.tar.gz |
umip: unblacklist and disable parallel make
The SRC_URI is up again, no need to blacklist the recipe if we disable parallel make
The following error can ocurr in a race condition:
scan.l:38:18: fatal error: gram.h: No such file or directory
http://errors.yoctoproject.org/Errors/Details/56158/
That is, the scan.l file is parsed before the gram.h file is generated.
To avoid this, we clear the PARALLEL_MAKE variable.
Signed-off-by: Adrian Dudau <adrian.dudau@enea.com>
Signed-off-by: Martin Jansa <Martin.Jansa@gmail.com>
Signed-off-by: Armin Kuster <akuster808@gmail.com>
-rw-r--r-- | meta-oe/recipes-connectivity/umip/umip_1.0.bb | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/meta-oe/recipes-connectivity/umip/umip_1.0.bb b/meta-oe/recipes-connectivity/umip/umip_1.0.bb index 41e53406c..e80c1b130 100644 --- a/meta-oe/recipes-connectivity/umip/umip_1.0.bb +++ b/meta-oe/recipes-connectivity/umip/umip_1.0.bb | |||
@@ -17,4 +17,4 @@ EXTRA_OE_CONF = "--enable-vt" | |||
17 | 17 | ||
18 | inherit autotools-brokensep | 18 | inherit autotools-brokensep |
19 | 19 | ||
20 | PNBLACKLIST[umip] ?= "BROKEN: SRC_URI seems to be down and build from premirror fails to find gram.h, see http://errors.yoctoproject.org/Errors/Details/56158/" | 20 | PARALLEL_MAKE = "" |