summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorAlexander Kanavin <alex.kanavin@gmail.com>2022-05-05 17:17:57 +0200
committerRichard Purdie <richard.purdie@linuxfoundation.org>2022-05-07 22:31:21 +0100
commitc91140ae2c73a40d5c22dc167e37c29e2479bdc2 (patch)
treef936347696a6ec40cc6f1521a4b0f3493c2f7bd4
parent6860c248ffe61f01d30810767c77462817a2232a (diff)
downloadpoky-c91140ae2c73a40d5c22dc167e37c29e2479bdc2.tar.gz
stress-ng: disable apparmor from the correct spot
do_configure uses the base.bbclass version, which can call 'make clean', negating the disabling. (From OE-Core rev: 5ab122a79ec3c65c2704b2f47c59b357c425dad0) Signed-off-by: Alexander Kanavin <alex@linutronix.de> Signed-off-by: Luca Ceresoli <luca.ceresoli@bootlin.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
-rw-r--r--meta/recipes-extended/stress-ng/stress-ng_0.14.00.bb2
1 files changed, 1 insertions, 1 deletions
diff --git a/meta/recipes-extended/stress-ng/stress-ng_0.14.00.bb b/meta/recipes-extended/stress-ng/stress-ng_0.14.00.bb
index ada35dbc4c..e7cc1d1846 100644
--- a/meta/recipes-extended/stress-ng/stress-ng_0.14.00.bb
+++ b/meta/recipes-extended/stress-ng/stress-ng_0.14.00.bb
@@ -20,7 +20,7 @@ RCONFLICTS:${PN} = "stress"
20 20
21inherit bash-completion 21inherit bash-completion
22 22
23do_configure:prepend() { 23do_compile:prepend() {
24 mkdir -p configs 24 mkdir -p configs
25 touch configs/HAVE_APPARMOR 25 touch configs/HAVE_APPARMOR
26} 26}