diff options
author | Richard Purdie <richard.purdie@linuxfoundation.org> | 2014-03-18 13:31:56 +0000 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2014-03-18 23:05:52 +0000 |
commit | 08303af44afb1d90068620f36cd3c7f4ee7d5f7c (patch) | |
tree | 0ceddb14946bb47190a95733bf75510096822189 /meta | |
parent | e58089b9d708ba176594a758580cc52c23725a5b (diff) | |
download | poky-08303af44afb1d90068620f36cd3c7f4ee7d5f7c.tar.gz |
autotools: Exclude variables from autotools_copy_aclocals
The autotools aclocal copy function should not depend on various variables, these
are accounted for in other parts of the system. Therefore exclude them.
This was causing differences in sstate checksums between different systems and meaning
the sstate cache wasn't being reused as much as it should.
(From OE-Core rev: b7193fadb1a53c86ffe4982a2fa9c1179a74de46)
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'meta')
-rw-r--r-- | meta/classes/autotools.bbclass | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/meta/classes/autotools.bbclass b/meta/classes/autotools.bbclass index b645996136..c60ba10929 100644 --- a/meta/classes/autotools.bbclass +++ b/meta/classes/autotools.bbclass | |||
@@ -175,7 +175,7 @@ python autotools_copy_aclocals () { | |||
175 | if not os.path.exists(t): | 175 | if not os.path.exists(t): |
176 | os.symlink(c, t) | 176 | os.symlink(c, t) |
177 | } | 177 | } |
178 | autotools_copy_aclocals[vardepsexclude] += "MACHINE" | 178 | autotools_copy_aclocals[vardepsexclude] += "MACHINE SDK_ARCH BUILD_ARCH BB_TASKDEPDATA" |
179 | 179 | ||
180 | autotools_do_configure() { | 180 | autotools_do_configure() { |
181 | # WARNING: gross hack follows: | 181 | # WARNING: gross hack follows: |