summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorChristopher Larson <kergoth@gmail.com>2013-10-23 22:30:41 +0000
committerOtavio Salvador <otavio@ossystems.com.br>2013-10-28 10:13:34 -0200
commit832ad4c065fed9e76ee21fd017a10bb9f800c527 (patch)
tree6cc6dd3bcc8063609b7ccdbc12e4b078ac32804b
parent32f861bd27b5ee220abbe979913318d73ec9c246 (diff)
downloadmeta-freescale-832ad4c065fed9e76ee21fd017a10bb9f800c527.tar.gz
fsl-eula-unpack: add FSL_EULA_FILE to vardepsexclude
FSL_EULA_FILE is defined with :=, which means it contains a full absolute path to the layer directory. If this is allowed to make it into the task checksum, it becomes impossible to use the shared states for these recipes without having meta-fsl-arm in the exact same path in the filesystem it was in when the sstate archives were created. Add FSL_EULA_FILE to do_unpack[vardepsexclude]. Signed-off-by: Christopher Larson <kergoth@gmail.com>
-rw-r--r--meta-fsl-arm/classes/fsl-eula-unpack.bbclass2
1 files changed, 2 insertions, 0 deletions
diff --git a/meta-fsl-arm/classes/fsl-eula-unpack.bbclass b/meta-fsl-arm/classes/fsl-eula-unpack.bbclass
index 6660a8840..0da17c385 100644
--- a/meta-fsl-arm/classes/fsl-eula-unpack.bbclass
+++ b/meta-fsl-arm/classes/fsl-eula-unpack.bbclass
@@ -59,3 +59,5 @@ python do_unpack() {
59 59
60 bb.build.exec_func('fsl_bin_do_unpack', d) 60 bb.build.exec_func('fsl_bin_do_unpack', d)
61} 61}
62
63do_unpack[vardepsexclude] += "FSL_EULA_FILE"