diff options
author | Paul Sokolovsky <pmiscml@gmail.com> | 2008-01-28 00:11:15 +0000 |
---|---|---|
committer | Paul Sokolovsky <pmiscml@gmail.com> | 2008-01-28 00:11:15 +0000 |
commit | c291df04a3913d8559159f82c3b0ffa4dae7de33 (patch) | |
tree | ebab338034f8af6922a8371d9bce6352c3e28fe2 /classes | |
parent | 798ff0e5c5bd0ef9ab59576fc7a06103cef5b1dd (diff) |
patch.bbclass: Show full path of a patch.
* This is for consistency with existing non-patch fetch message in base.bbclass.
Allows to catch pulling file from wrong override dir quickly.
Diffstat (limited to 'classes')
-rw-r--r-- | classes/patch.bbclass | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/classes/patch.bbclass b/classes/patch.bbclass index 0cc202820f..6f83d9c88b 100644 --- a/classes/patch.bbclass +++ b/classes/patch.bbclass @@ -526,7 +526,7 @@ python patch_do_patch() { bb.note("Patch '%s' applies to earlier revisions" % pname) continue - bb.note("Applying patch '%s'" % pname) + bb.note("Applying patch '%s' (%s)" % (pname, unpacked)) try: patchset.Import({"file":unpacked, "remote":url, "strippath": pnum}, True) except: |