]> code.ossystems Code Review - openembedded-core.git/commit
bash 3.2.48: disable parallel build
authorRobert Yang <liezhi.yang@windriver.com>
Wed, 4 Mar 2015 09:23:28 +0000 (01:23 -0800)
committerRichard Purdie <richard.purdie@linuxfoundation.org>
Mon, 9 Mar 2015 16:00:22 +0000 (16:00 +0000)
commitefbee563af4ab56f93ac0a6238426d1d3eb80b98
tree99887f8f9783fa9285d336ba93231590779dc2b8
parentd23a1d7df849a2a7d338b2805bba7694717cbe65
bash 3.2.48: disable parallel build

It's Makefile has the two rules:
$(BUILTINS_LIBRARY): $(BUILTIN_DEFS) $(BUILTIN_C_SRC) config.h ${BASHINCDIR}/memalloc.h version.h
    @(cd $(DEFDIR) && $(MAKE) $(MFLAGS) DEBUG=${DEBUG} libbuiltins.a ) || exit 1

${DEFDIR}/builtext.h: $(BUILTIN_DEFS)
    @(cd $(DEFDIR) && $(MAKE) $(MFLAGS) builtext.h ) || exit 1

which causes parallel issues:
mkbuiltins.o: file not recognized: File truncated
collect2: ld returned 1 exit status

I don't have any good ideas to fix the problem, so disable parallel
build for it.

Signed-off-by: Robert Yang <liezhi.yang@windriver.com>
Signed-off-by: Ross Burton <ross.burton@intel.com>
meta/recipes-extended/bash/bash_3.2.48.bb