summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--meta/lib/oe/patch.py3
1 files changed, 1 insertions, 2 deletions
diff --git a/meta/lib/oe/patch.py b/meta/lib/oe/patch.py
index fa92abe248..bb1c40aa1e 100644
--- a/meta/lib/oe/patch.py
+++ b/meta/lib/oe/patch.py
@@ -508,8 +508,7 @@ class GitApplyTree(PatchTree):
508 with open(commithook, 'w') as f: 508 with open(commithook, 'w') as f:
509 # NOTE: the formatting here is significant; if you change it you'll also need to 509 # NOTE: the formatting here is significant; if you change it you'll also need to
510 # change other places which read it back 510 # change other places which read it back
511 f.write('echo >> $1\n') 511 f.write('echo "\n%s: $PATCHFILE" >> $1' % GitApplyTree.patch_line_prefix)
512 f.write('echo "%s: $PATCHFILE" >> $1\n' % GitApplyTree.patch_line_prefix)
513 os.chmod(commithook, 0o755) 512 os.chmod(commithook, 0o755)
514 shutil.copy2(commithook, applyhook) 513 shutil.copy2(commithook, applyhook)
515 try: 514 try: