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-06 22:31:58 +0100
commit5ab122a79ec3c65c2704b2f47c59b357c425dad0 (patch)
tree3c5562744bb1db25e36dcfd04ba518be368f26df
parent3ea0f248acf60791a25f496e2aff06c68d218ba7 (diff)
downloadopenembedded-core-contrib-5ab122a79ec3c65c2704b2f47c59b357c425dad0.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. 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"
inherit bash-completion
-do_configure:prepend() {
+do_compile:prepend() {
mkdir -p configs
touch configs/HAVE_APPARMOR
}