diff options
author | Richard Purdie <richard.purdie@linuxfoundation.org> | 2014-08-04 11:30:14 +0000 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2014-08-04 16:25:46 +0100 |
commit | 83775dcc90c79f2f096dbc1694f37b924a5275c4 (patch) | |
tree | 6c425a8745b113ac6fdbb28706a6a133e70c2fd5 /meta/classes | |
parent | b52132122c9e68bac91099aac908de2b0c199892 (diff) | |
download | poky-83775dcc90c79f2f096dbc1694f37b924a5275c4.tar.gz |
autotools: Exclude SDK_OS from autotools task signatures
The change to handle SDKs of different types resulted in the signatures
becoming SDK specific which wasn't intended. Exclude the variable from the
hash values to avoid this.
(From OE-Core rev: add7b9cb20282f837c90a785f04ca690a9bbe87e)
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'meta/classes')
-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 569b2e5635..c49f0631ab 100644 --- a/meta/classes/autotools.bbclass +++ b/meta/classes/autotools.bbclass | |||
@@ -204,7 +204,7 @@ python autotools_copy_aclocals () { | |||
204 | if not os.path.exists(t): | 204 | if not os.path.exists(t): |
205 | os.symlink(c, t) | 205 | os.symlink(c, t) |
206 | } | 206 | } |
207 | autotools_copy_aclocals[vardepsexclude] += "MACHINE SDK_ARCH BUILD_ARCH BB_TASKDEPDATA" | 207 | autotools_copy_aclocals[vardepsexclude] += "MACHINE SDK_ARCH BUILD_ARCH SDK_OS BB_TASKDEPDATA" |
208 | 208 | ||
209 | autotools_do_configure() { | 209 | autotools_do_configure() { |
210 | # WARNING: gross hack follows: | 210 | # WARNING: gross hack follows: |