diff options
author | Joshua Watt <JPEWhacker@gmail.com> | 2023-12-22 15:41:09 -0700 |
---|---|---|
committer | Steve Sakoman <steve@sakoman.com> | 2024-01-31 04:10:24 -1000 |
commit | 8de5dd79c0d1ebbe3581c564849ef34c4b7470e0 (patch) | |
tree | 2fe3e7d14343e0ef192f1183bcbcb3d563b979fc | |
parent | 1a44cbee814132eabf305e644c2a10968a8415f2 (diff) | |
download | poky-8de5dd79c0d1ebbe3581c564849ef34c4b7470e0.tar.gz |
classes-global/sstate: Fix variable typo
The vardepsexclude was subtly wrong in that it referenced STATE_MANMACH
when the actual variable name is SSTATE_MANMACH.
(From OE-Core rev: a681f90caec27d4076bdae3b5b19df2d7f5978cd)
Signed-off-by: Joshua Watt <JPEWhacker@gmail.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
(cherry picked from commit ec5054396f7fafea2a071d2695ae111fc585d6e6)
Signed-off-by: Steve Sakoman <steve@sakoman.com>
-rw-r--r-- | meta/classes-global/sstate.bbclass | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/meta/classes-global/sstate.bbclass b/meta/classes-global/sstate.bbclass index 0f11a528b5..08e6421093 100644 --- a/meta/classes-global/sstate.bbclass +++ b/meta/classes-global/sstate.bbclass | |||
@@ -336,7 +336,7 @@ def sstate_install(ss, d): | |||
336 | for lock in locks: | 336 | for lock in locks: |
337 | bb.utils.unlockfile(lock) | 337 | bb.utils.unlockfile(lock) |
338 | 338 | ||
339 | sstate_install[vardepsexclude] += "SSTATE_ALLOW_OVERLAP_FILES STATE_MANMACH SSTATE_MANFILEPREFIX" | 339 | sstate_install[vardepsexclude] += "SSTATE_ALLOW_OVERLAP_FILES SSTATE_MANMACH SSTATE_MANFILEPREFIX" |
340 | sstate_install[vardeps] += "${SSTATEPOSTINSTFUNCS}" | 340 | sstate_install[vardeps] += "${SSTATEPOSTINSTFUNCS}" |
341 | 341 | ||
342 | def sstate_installpkg(ss, d): | 342 | def sstate_installpkg(ss, d): |