From: Jan-Simon Möller <jsmoeller@linuxfoundation.org>
Date: Tue, 14 Aug 2018 15:18:46 +0000 (+0200)
Subject: Fix do_patch[depends] statement
X-Git-Tag: flounder/5.99.3~5
X-Git-Url: https://gerrit.automotivelinux.org/gerrit/gitweb?a=commitdiff_plain;h=refs%2Fchanges%2F21%2F16121%2F1;p=AGL%2Fmeta-agl.git

Fix do_patch[depends] statement

We were overwriting the previous values.
Thus quilt was not deployed for patching and thus failing.

Change-Id: I031a09059dd5ae163baa37d7bf8866528cde3fce
Signed-off-by: Jan-Simon Möller <jsmoeller@linuxfoundation.org>
---

diff --git a/meta-agl-profile-core/recipes-kernel/most/most.bbappend b/meta-agl-profile-core/recipes-kernel/most/most.bbappend
index 4ebcba88d..8515d4cc8 100644
--- a/meta-agl-profile-core/recipes-kernel/most/most.bbappend
+++ b/meta-agl-profile-core/recipes-kernel/most/most.bbappend
@@ -25,4 +25,4 @@ SRC_URI_append = " \
 	    file://0009-dim2-use-device-for-coherent-memory-allocation.patch \
 	   "
 # Make sure we can expose KERNEL_VERSION ...
-do_patch[depends] = "virtual/kernel:do_populate_sysroot"
+do_patch[depends] += "virtual/kernel:do_populate_sysroot"