summaryrefslogtreecommitdiffstats
path: root/meta/classes/externalsrc.bbclass
diff options
context:
space:
mode:
Diffstat (limited to 'meta/classes/externalsrc.bbclass')
-rw-r--r--meta/classes/externalsrc.bbclass22
1 files changed, 22 insertions, 0 deletions
diff --git a/meta/classes/externalsrc.bbclass b/meta/classes/externalsrc.bbclass
index da7eb4781c..f173496ae8 100644
--- a/meta/classes/externalsrc.bbclass
+++ b/meta/classes/externalsrc.bbclass
@@ -89,6 +89,7 @@ python () {
89 # function is run every time 89 # function is run every time
90 d.setVar('BB_DONT_CACHE', '1') 90 d.setVar('BB_DONT_CACHE', '1')
91 d.setVarFlag('do_compile', 'file-checksums', '${@srctree_hash_files(d)}') 91 d.setVarFlag('do_compile', 'file-checksums', '${@srctree_hash_files(d)}')
92 d.setVarFlag('do_configure', 'file-checksums', '${@srctree_configure_hash_files(d)}')
92 93
93 # We don't want the workdir to go away 94 # We don't want the workdir to go away
94 d.appendVar('RM_WORK_EXCLUDE', ' ' + d.getVar('PN', True)) 95 d.appendVar('RM_WORK_EXCLUDE', ' ' + d.getVar('PN', True))
@@ -152,3 +153,24 @@ def srctree_hash_files(d):
152 else: 153 else:
153 ret = d.getVar('EXTERNALSRC', True) + '/*:True' 154 ret = d.getVar('EXTERNALSRC', True) + '/*:True'
154 return ret 155 return ret
156
157def srctree_configure_hash_files(d):
158 """
159 Get the list of files that should trigger do_configure to re-execute,
160 based on the value of CONFIGURE_FILES
161 """
162 in_files = (d.getVar('CONFIGURE_FILES', True) or '').split()
163 out_items = []
164 search_files = []
165 for entry in in_files:
166 if entry.startswith('/'):
167 out_items.append('%s:%s' % (entry, os.path.exists(entry)))
168 else:
169 search_files.append(entry)
170 if search_files:
171 s_dir = d.getVar('EXTERNALSRC', True)
172 for root, _, files in os.walk(s_dir):
173 for f in files:
174 if f in search_files:
175 out_items.append('%s:True' % os.path.join(root, f))
176 return ' '.join(out_items)