summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--scripts/lib/devtool/standard.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/scripts/lib/devtool/standard.py b/scripts/lib/devtool/standard.py
index 14e87b95a4..beea0d4c27 100644
--- a/scripts/lib/devtool/standard.py
+++ b/scripts/lib/devtool/standard.py
@@ -1298,7 +1298,7 @@ def _update_recipe_srcrev(srctree, rd, appendlayerdir, wildcard_version, no_remo
1298 if not no_remove: 1298 if not no_remove:
1299 # Find list of existing patches in recipe file 1299 # Find list of existing patches in recipe file
1300 patches_dir = tempfile.mkdtemp(dir=tempdir) 1300 patches_dir = tempfile.mkdtemp(dir=tempdir)
1301 old_srcrev = (rd.getVar('SRCREV', False) or '') 1301 old_srcrev = rd.getVar('SRCREV') or ''
1302 upd_p, new_p, del_p = _export_patches(srctree, rd, old_srcrev, 1302 upd_p, new_p, del_p = _export_patches(srctree, rd, old_srcrev,
1303 patches_dir) 1303 patches_dir)
1304 logger.debug('Patches: update %s, new %s, delete %s' % (dict(upd_p), dict(new_p), dict(del_p))) 1304 logger.debug('Patches: update %s, new %s, delete %s' % (dict(upd_p), dict(new_p), dict(del_p)))