Re: [OE-core] [PATCH] systemtap: Fix issues from 4.0 upgrade

2018-10-17 Thread richard . purdie
On Wed, 2018-10-17 at 10:29 +0200, Martin Hundebøll wrote: > On 16/10/2018 21.25, Richard Purdie wrote: > > + > > + # Fix makefile hardcoded path assumptions for systemd (assumes > > $prefix) > > + install -d `dirname ${D}${systemd_unitdir}` > > + mv ${D}${prefix}/lib/systemd `dirname

Re: [OE-core] [PATCH] systemtap: Fix issues from 4.0 upgrade

2018-10-17 Thread Martin Hundebøll
Hi Richard, On 16/10/2018 21.25, Richard Purdie wrote: 4.0 adds systemd support but installs the unit files in the wrong location. Fix this in do_install and inherit systemd to package them correctly. Also fix ownership of files manually copied in to root:root to avoid QA warnings.

[OE-core] [PATCH] systemtap: Fix issues from 4.0 upgrade

2018-10-16 Thread Richard Purdie
4.0 adds systemd support but installs the unit files in the wrong location. Fix this in do_install and inherit systemd to package them correctly. Also fix ownership of files manually copied in to root:root to avoid QA warnings. Signed-off-by: Richard Purdie ---