diff options
author | Ross Burton <ross.burton@intel.com> | 2018-06-28 15:44:09 +0100 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2018-08-29 15:23:50 +0100 |
commit | 8a424659048f26f428dcf043c095d24b0796f1c7 (patch) | |
tree | 00d8e0e4826944cdea9cf8a99a0a03cf0445e537 | |
parent | bd67bb0f6ec411e4f93a10fee72b56b7f8b5ecfe (diff) | |
download | poky-8a424659048f26f428dcf043c095d24b0796f1c7.tar.gz |
openssl: disable ccache usage
ccache and openssl don't get on:
| make[1]: Entering directory '/home/prj/yocto/build/tmp/work/core2-64-poky-linux/openssl/1.0.2o-r0/openssl-1.0.2o/crypto'
| ccache: invalid option -- 'D'
Disable the use of ccache in the openssl recipe until someone root-causes this.
[ YOCTO #12810 ]
(From OE-Core rev: 8f9ceebb197dba10f2d08449de2dd64584de06bb)
(From OE-Core rev: e90da34e5667acacd9ad0dd167846a6126fefad2)
Signed-off-by: Ross Burton <ross.burton@intel.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Signed-off-by: Armin Kuster <akuster808@gmail.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
-rw-r--r-- | meta/recipes-connectivity/openssl/openssl10.inc | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/meta/recipes-connectivity/openssl/openssl10.inc b/meta/recipes-connectivity/openssl/openssl10.inc index f7a8de823a..995177d320 100644 --- a/meta/recipes-connectivity/openssl/openssl10.inc +++ b/meta/recipes-connectivity/openssl/openssl10.inc | |||
@@ -33,6 +33,9 @@ export DIRS = "crypto ssl apps" | |||
33 | export EX_LIBS = "-lgcc -ldl" | 33 | export EX_LIBS = "-lgcc -ldl" |
34 | export AS = "${CC} -c" | 34 | export AS = "${CC} -c" |
35 | 35 | ||
36 | # openssl fails with ccache: https://bugzilla.yoctoproject.org/show_bug.cgi?id=12810 | ||
37 | CCACHE = "" | ||
38 | |||
36 | inherit pkgconfig siteinfo multilib_header ptest relative_symlinks | 39 | inherit pkgconfig siteinfo multilib_header ptest relative_symlinks |
37 | 40 | ||
38 | PACKAGES =+ "libcrypto libssl ${PN}-misc openssl-conf" | 41 | PACKAGES =+ "libcrypto libssl ${PN}-misc openssl-conf" |