From: Dan Callaghan Date: Thu, 23 Jul 2020 08:50:31 +0000 (+1000) Subject: stress-ng: create a symlink for /usr/bin/stress X-Git-Tag: lucaceresoli/bug-15201-perf-libtraceevent-missing~10484 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=5d8c4ea26a48135c3405afac0372e4e062a7339a;p=thirdparty%2Fopenembedded%2Fopenembedded-core-contrib.git stress-ng: create a symlink for /usr/bin/stress In commit 72641004, stress-ng was made to provide the stress package, because it's backwards compatible with the old stress command. But it doesn't actually provide /usr/bin/stress which is what other recipes depending on stress will expect. Symlink /usr/bin/stress to stress-ng so that it actually becomes a drop-in replacement for stress. Signed-off-by: Dan Callaghan Signed-off-by: Richard Purdie --- diff --git a/meta/recipes-extended/stress-ng/stress-ng_0.11.15.bb b/meta/recipes-extended/stress-ng/stress-ng_0.11.15.bb index 8ea0476db5a..28bf9884cf9 100644 --- a/meta/recipes-extended/stress-ng/stress-ng_0.11.15.bb +++ b/meta/recipes-extended/stress-ng/stress-ng_0.11.15.bb @@ -22,5 +22,6 @@ inherit bash-completion do_install() { oe_runmake DESTDIR=${D} install + ln -s stress-ng ${D}${bindir}/stress }