summaryrefslogtreecommitdiffstats
path: root/meta/classes
diff options
context:
space:
mode:
Diffstat (limited to 'meta/classes')
-rw-r--r--meta/classes/sanity.bbclass7
1 files changed, 7 insertions, 0 deletions
diff --git a/meta/classes/sanity.bbclass b/meta/classes/sanity.bbclass
index 39da14ba41..25ddfeabb2 100644
--- a/meta/classes/sanity.bbclass
+++ b/meta/classes/sanity.bbclass
@@ -100,6 +100,13 @@ def check_sanity_sstate_dir_change(sstate_dir, data):
100 testmsg = "" 100 testmsg = ""
101 if sstate_dir != "": 101 if sstate_dir != "":
102 testmsg = check_create_long_filename(sstate_dir, "SSTATE_DIR") 102 testmsg = check_create_long_filename(sstate_dir, "SSTATE_DIR")
103 # If we don't have permissions to SSTATE_DIR, suggest the user set it as an SSTATE_MIRRORS
104 try:
105 err = testmsg.split(': ')[1].strip()
106 if err == "Permission denied.":
107 testmsg = testmsg + "You could try using %s in SSTATE_MIRRORS rather than as an SSTATE_CACHE.\n" % (sstate_dir)
108 except IndexError:
109 pass
103 return testmsg 110 return testmsg
104 111
105def check_sanity_tmpdir_change(tmpdir, data): 112def check_sanity_tmpdir_change(tmpdir, data):