diff options
author | Joshua Watt <JPEWhacker@gmail.com> | 2021-02-14 13:12:41 -0600 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2021-02-16 11:28:17 +0000 |
commit | aeab16e89ae90f37dbf838aac9190ee62132101d (patch) | |
tree | 003e6ddb11157cc5236d52e48ab2f27be85a17bd | |
parent | 2e655504983921ce177a310ce1d7a10a1cec49e7 (diff) | |
download | poky-aeab16e89ae90f37dbf838aac9190ee62132101d.tar.gz |
oeqa: reproducible: Fix SSTATE_MIRRORS variable
The SSTATE_MIRRORS variable was misspelled, which allowed the "clean"
test build to pull from the mirror.
(From OE-Core rev: e42497bd84d0bb370a9f7b0448bff29f01fd1b0c)
Signed-off-by: Joshua Watt <JPEWhacker@gmail.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
-rw-r--r-- | meta/lib/oeqa/selftest/cases/reproducible.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/meta/lib/oeqa/selftest/cases/reproducible.py b/meta/lib/oeqa/selftest/cases/reproducible.py index cb4c59ca6f..7bc578a20f 100644 --- a/meta/lib/oeqa/selftest/cases/reproducible.py +++ b/meta/lib/oeqa/selftest/cases/reproducible.py | |||
@@ -258,7 +258,7 @@ class ReproducibleTests(OESelftestTestCase): | |||
258 | # mirror, forcing a complete build from scratch | 258 | # mirror, forcing a complete build from scratch |
259 | config += textwrap.dedent('''\ | 259 | config += textwrap.dedent('''\ |
260 | SSTATE_DIR = "${TMPDIR}/sstate" | 260 | SSTATE_DIR = "${TMPDIR}/sstate" |
261 | SSTATE_MIRROR = "" | 261 | SSTATE_MIRRORS = "" |
262 | ''') | 262 | ''') |
263 | 263 | ||
264 | self.write_config(config) | 264 | self.write_config(config) |