diff options
author | Wenzong Fan <wenzong.fan@windriver.com> | 2011-06-24 15:57:12 +0800 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2011-06-30 20:57:06 +0100 |
commit | 409ac8f2423a38c02d0e810569de13a1083c9b8b (patch) | |
tree | bd6bb44e2b7aa695682b2cedb5dca8a3200ada71 /meta/classes/ccache.inc | |
parent | fec22b1ace435d524ea9abebfcc883c0578993ff (diff) | |
download | poky-409ac8f2423a38c02d0e810569de13a1083c9b8b.tar.gz |
ccache: Remove duplicate 'ccache.inc' from 'meta/class/'
(From OE-Core rev: e37c80486b1043afa3c0b4ef5724155f8b17f821)
Signed-off-by: Wenzong Fan <wenzong.fan@windriver.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'meta/classes/ccache.inc')
-rw-r--r-- | meta/classes/ccache.inc | 11 |
1 files changed, 0 insertions, 11 deletions
diff --git a/meta/classes/ccache.inc b/meta/classes/ccache.inc deleted file mode 100644 index d830a1b8fe..0000000000 --- a/meta/classes/ccache.inc +++ /dev/null | |||
@@ -1,11 +0,0 @@ | |||
1 | # Make ccache use a TMPDIR specific ccache directory if using the crosscompiler, | ||
2 | # since it isn't likely to be useful with any other toolchain than the one we just | ||
3 | # built, and would otherwise push more useful things out of the default cache. | ||
4 | |||
5 | CCACHE_DIR_TARGET = "${TMPDIR}/ccache" | ||
6 | |||
7 | python () { | ||
8 | if not bb.data.inherits_class('native', d) and not bb.data.inherits_class('cross', d): | ||
9 | bb.data.setVar('CCACHE_DIR', '${CCACHE_DIR_TARGET}', d) | ||
10 | bb.data.setVarFlag('CCACHE_DIR', 'export', '1', d) | ||
11 | } | ||