summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--scripts/lib/devtool/standard.py6
1 files changed, 3 insertions, 3 deletions
diff --git a/scripts/lib/devtool/standard.py b/scripts/lib/devtool/standard.py
index aca74b1fc6..dcb6bf9540 100644
--- a/scripts/lib/devtool/standard.py
+++ b/scripts/lib/devtool/standard.py
@@ -637,9 +637,9 @@ def _extract_source(srctree, keep_temp, devbranch, sync, config, basepath, works
637 addfiles.append(os.path.join(relpth, fn)) 637 addfiles.append(os.path.join(relpth, fn))
638 if addfiles: 638 if addfiles:
639 bb.process.run('git add %s' % ' '.join(addfiles), cwd=srctree) 639 bb.process.run('git add %s' % ' '.join(addfiles), cwd=srctree)
640 useroptions = [] 640 useroptions = []
641 oe.patch.GitApplyTree.gitCommandUserOptions(useroptions, d=d) 641 oe.patch.GitApplyTree.gitCommandUserOptions(useroptions, d=d)
642 bb.process.run('git %s commit -a -m "Committing local file symlinks\n\n%s"' % (' '.join(useroptions), oe.patch.GitApplyTree.ignore_commit_prefix), cwd=srctree) 642 bb.process.run('git %s commit -m "Committing local file symlinks\n\n%s"' % (' '.join(useroptions), oe.patch.GitApplyTree.ignore_commit_prefix), cwd=srctree)
643 643
644 if is_kernel_yocto: 644 if is_kernel_yocto:
645 logger.info('Copying kernel config to srctree') 645 logger.info('Copying kernel config to srctree')