[oe-commits] [openembedded-core] 03/09: sanity: clarify error message if TMPDIR moves

git at git.openembedded.org git at git.openembedded.org
Tue Apr 9 12:47:44 UTC 2019


This is an automated email from the git hooks/post-receive script.

rpurdie pushed a commit to branch master
in repository openembedded-core.

commit 36805a628f8208ff6d7fba9955c5fb1ed6396395
Author: Ross Burton <ross.burton at intel.com>
AuthorDate: Fri Apr 5 21:00:05 2019 +0100

    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".
    
    Signed-off-by: Ross Burton <ross.burton at intel.com>
    Signed-off-by: Richard Purdie <richard.purdie at linuxfoundation.org>
---
 meta/classes/sanity.bbclass | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/meta/classes/sanity.bbclass b/meta/classes/sanity.bbclass
index cab0921..4cbb1f3 100644
--- a/meta/classes/sanity.bbclass
+++ b/meta/classes/sanity.bbclass
@@ -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

-- 
To stop receiving notification emails like this one, please contact
the administrator of this repository.


More information about the Openembedded-commits mailing list