diff options
author | Richard Purdie <richard.purdie@linuxfoundation.org> | 2018-10-17 13:40:54 +0100 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2018-10-17 13:41:06 +0100 |
commit | 02646be9d38fac14d9820d02d398b731b9c1bf9c (patch) | |
tree | 3a76b9a2f884369d8f0b85b88751c08b9eae510b | |
parent | 74833a612cc383679bb5516e98c7508da47b0767 (diff) | |
download | openembedded-core-02646be9d38fac14d9820d02d398b731b9c1bf9c.tar.gz openembedded-core-02646be9d38fac14d9820d02d398b731b9c1bf9c.tar.bz2 openembedded-core-02646be9d38fac14d9820d02d398b731b9c1bf9c.zip |
systemtap: Fix typo in chown command
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
-rw-r--r-- | meta/recipes-kernel/systemtap/systemtap_git.bb | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/meta/recipes-kernel/systemtap/systemtap_git.bb b/meta/recipes-kernel/systemtap/systemtap_git.bb index 3c45bfa937..78a82efc2c 100644 --- a/meta/recipes-kernel/systemtap/systemtap_git.bb +++ b/meta/recipes-kernel/systemtap/systemtap_git.bb @@ -46,7 +46,7 @@ do_install_append () { rmdir ${D}${prefix}/lib --ignore-fail-on-non-empty # Ensure correct ownership for files copied in - chown root.root ${D}${sysconfdir}/stap-exporter/* -R + chown root:root ${D}${sysconfdir}/stap-exporter/* -R } BBCLASSEXTEND = "nativesdk" |