diff options
author | Robert Yang <liezhi.yang@windriver.com> | 2015-03-11 01:35:39 -0700 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2015-03-16 17:38:47 +0000 |
commit | 99473b6668a05698ce000b142e97cce405a8a3cd (patch) | |
tree | 7b6d3136f29061fa0c9c9aba2e2af7c54b5a7fd5 /meta/recipes-extended/mailx | |
parent | a7572d7000bbc5739a1f0bec466dbcf856606f12 (diff) | |
download | openembedded-core-99473b6668a05698ce000b142e97cce405a8a3cd.tar.gz openembedded-core-99473b6668a05698ce000b142e97cce405a8a3cd.tar.bz2 openembedded-core-99473b6668a05698ce000b142e97cce405a8a3cd.zip |
mailx: disable parallel build
The makeconfig can't run parallelly, otherwise the checking results
might be incorrect and lead to errors:
fio.c:56:17: fatal error: ssl.h: No such file or directory
Signed-off-by: Robert Yang <liezhi.yang@windriver.com>
Signed-off-by: Ross Burton <ross.burton@intel.com>
Diffstat (limited to 'meta/recipes-extended/mailx')
-rw-r--r-- | meta/recipes-extended/mailx/mailx_12.5.bb | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/meta/recipes-extended/mailx/mailx_12.5.bb b/meta/recipes-extended/mailx/mailx_12.5.bb index 080d71f150..a53da3af5d 100644 --- a/meta/recipes-extended/mailx/mailx_12.5.bb +++ b/meta/recipes-extended/mailx/mailx_12.5.bb @@ -29,3 +29,8 @@ inherit autotools-brokensep CFLAGS_append = " -D_BSD_SOURCE -DDEBIAN -I${S}/EXT" EXTRA_OEMAKE = "SENDMAIL=${sbindir}/sendmail" +# The makeconfig can't run parallelly, otherwise the checking results +# might be incorrect and lead to errors: +# fio.c:56:17: fatal error: ssl.h: No such file or directory +# #include <ssl.h> +PARALLEL_MAKE = "" |