diff options
author | 2013-08-28 23:29:35 +0200 | |
---|---|---|
committer | 2013-08-28 23:58:27 +0200 | |
commit | 339868d244dba9befe71b7bca2d70ce723b230b1 (patch) | |
tree | e89beb38a9ad87a6452877927427872dc03e9e1a | |
parent | 244038576b4d45363b328f437b772afc4cfbf9b2 (diff) | |
download | buildroot-339868d244dba9befe71b7bca2d70ce723b230b1.tar.gz buildroot-339868d244dba9befe71b7bca2d70ce723b230b1.tar.bz2 |
bash: fails in parallel build
Signed-off-by: Arnout Vandecappelle (Essensium/Mind) <arnout@mind.be>
Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
-rw-r--r-- | package/bash/bash.mk | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/package/bash/bash.mk b/package/bash/bash.mk index efd2334ad0..0c8a954b20 100644 --- a/package/bash/bash.mk +++ b/package/bash/bash.mk @@ -16,6 +16,10 @@ BASH_CONF_ENV += \ bash_cv_func_sigsetjmp=present \ bash_cv_printf_a_format=yes +# Parallel build sometimes fails because some of the generator tools +# are built twice (i.e. while executing). +BASH_MAKE = $(MAKE1) + # The static build needs some trickery ifeq ($(BR2_PREFER_STATIC_LIB),y) BASH_CONF_OPT += --enable-static-link --without-bash-malloc |