aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--BACKPORTS.txt1
-rw-r--r--classes/patch.bbclass2
2 files changed, 2 insertions, 1 deletions
diff --git a/BACKPORTS.txt b/BACKPORTS.txt
index 3908cfef4b..418cfce9b0 100644
--- a/BACKPORTS.txt
+++ b/BACKPORTS.txt
@@ -227,3 +227,4 @@ a3b18a00a09e716f4b3d5bfced86fea0439953a0 h2200: load g_ether on boot (PaulS, Koe
a6d2d41d484ef7827260add2c94d270077592a01 db_4.3.29: fix packaging QA <xjqian koen>
578f199bc6b531a09543f38044f98199ef5f49ad db: sync with poky <xjqian koen>
847c6e3f16104e7b87568edf06d0d9cc79b5e860 db: fix upstream SRC_URI, unify db4. <xjqian koen>
+a99dc9b34551aa3889d7057538bf2e37b0471af1 patch.bbclass: Show full path of a patch <koen, xjqian>
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: