mirror of
https://git.yoctoproject.org/poky
synced 2026-04-19 15:32:13 +02:00
sanity: clarify error message if TMPDIR moves
If TMPDIR is moved the error message says "move it back or rebuild" but the obvious rebuild method of running 'bitbake [recipe]] -cclean' fails with the same error. Make it clear what we mean by adding "delete and". (From OE-Core rev: 36805a628f8208ff6d7fba9955c5fb1ed6396395) Signed-off-by: Ross Burton <ross.burton@intel.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
This commit is contained in:
committed by
Richard Purdie
parent
327513ee83
commit
bf7bd734d0
@@ -876,7 +876,7 @@ def check_sanity_everybuild(status, d):
|
||||
with open(checkfile, "r") as f:
|
||||
saved_tmpdir = f.read().strip()
|
||||
if (saved_tmpdir != tmpdir):
|
||||
status.addresult("Error, TMPDIR has changed location. You need to either move it back to %s or rebuild\n" % saved_tmpdir)
|
||||
status.addresult("Error, TMPDIR has changed location. You need to either move it back to %s or delete it and rebuild\n" % saved_tmpdir)
|
||||
else:
|
||||
bb.utils.mkdirhier(tmpdir)
|
||||
# Remove setuid, setgid and sticky bits from TMPDIR
|
||||
|
||||
Reference in New Issue
Block a user