* [PATCH] lib/oe/copy_buildsystem: Don't expand BB_TASKDEPDATA
@ 2015-11-10 9:57 Richard Purdie
0 siblings, 0 replies; only message in thread
From: Richard Purdie @ 2015-11-10 9:57 UTC (permalink / raw)
To: openembedded-core
The value isn't a string so don't try and expand it.
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
---
meta/lib/oe/copy_buildsystem.py | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/meta/lib/oe/copy_buildsystem.py b/meta/lib/oe/copy_buildsystem.py
index 979578c..23166f9 100644
--- a/meta/lib/oe/copy_buildsystem.py
+++ b/meta/lib/oe/copy_buildsystem.py
@@ -70,7 +70,7 @@ class BuildSystem(object):
def generate_locked_sigs(sigfile, d):
bb.utils.mkdirhier(os.path.dirname(sigfile))
- depd = d.getVar('BB_TASKDEPDATA', True)
+ depd = d.getVar('BB_TASKDEPDATA', False)
tasks = ['%s.%s' % (v[2], v[1]) for v in depd.itervalues()]
bb.parse.siggen.dump_lockedsigs(sigfile, tasks)
^ permalink raw reply related [flat|nested] only message in thread
only message in thread, other threads:[~2015-11-10 11:10 UTC | newest]
Thread overview: (only message) (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2015-11-10 9:57 [PATCH] lib/oe/copy_buildsystem: Don't expand BB_TASKDEPDATA Richard Purdie
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox