diff options
author | Dmitry Eremin-Solenikov <dbaryshkov@gmail.com> | 2015-10-19 17:19:15 +0300 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2015-10-27 07:24:24 +0000 |
commit | 8ccbc26e604efbabb8ed95508c920618f1505f32 (patch) | |
tree | 6213a3c1c6a3b9ba45c17f07ac1b5d3424dd0bf8 /meta/recipes-support/apr | |
parent | 5e42593d8d39eac258d2503efa6ec2e85042ea31 (diff) | |
download | poky-8ccbc26e604efbabb8ed95508c920618f1505f32.tar.gz |
apr: remove conflict with ccache
If ccache is enabled, compiling apr-utils fails with the following error
messages because libtool is confused by the "ccache gcc" appearing on
the command line. Disable ccache for apr, so that ccache don't get
enabled in all software using apr's rules.mk.
The error message from apr-utils-native:
(From OE-Core rev: 3533552050d0f91b669c6939755c5f6efefa9d58)
Signed-off-by: Dmitry Eremin-Solenikov <dbaryshkov@gmail.com>
Signed-off-by: Ross Burton <ross.burton@intel.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'meta/recipes-support/apr')
-rw-r--r-- | meta/recipes-support/apr/apr_1.5.2.bb | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/meta/recipes-support/apr/apr_1.5.2.bb b/meta/recipes-support/apr/apr_1.5.2.bb index e12a17625f..1c61e84e53 100644 --- a/meta/recipes-support/apr/apr_1.5.2.bb +++ b/meta/recipes-support/apr/apr_1.5.2.bb | |||
@@ -32,6 +32,11 @@ CACHED_CONFIGUREVARS += "apr_cv_mutex_recursive=yes" | |||
32 | # | 32 | # |
33 | CACHED_CONFIGUREVARS += "ac_cv_header_netinet_sctp_h=no ac_cv_header_netinet_sctp_uio_h=no" | 33 | CACHED_CONFIGUREVARS += "ac_cv_header_netinet_sctp_h=no ac_cv_header_netinet_sctp_uio_h=no" |
34 | 34 | ||
35 | # Otherwise libtool fails to compile apr-utils | ||
36 | # x86_64-linux-libtool: compile: unable to infer tagged configuration | ||
37 | # x86_64-linux-libtool: error: specify a tag with '--tag' | ||
38 | CCACHE = "" | ||
39 | |||
35 | do_configure_prepend() { | 40 | do_configure_prepend() { |
36 | # Avoid absolute paths for grep since it causes failures | 41 | # Avoid absolute paths for grep since it causes failures |
37 | # when using sstate between different hosts with different | 42 | # when using sstate between different hosts with different |