diff options
author | Khem Raj <raj.khem@gmail.com> | 2022-04-23 09:08:32 -0700 |
---|---|---|
committer | Khem Raj <raj.khem@gmail.com> | 2022-04-25 10:44:13 -0700 |
commit | 8c7ffffa07d3c5bb8156a90f4f37dc0cc3166153 (patch) | |
tree | 16ff59c33b796bac78f9a7c5b7e28c5199d6664b | |
parent | ae8e0ae77f74d966d687fef38bc1bccc76268f8f (diff) | |
download | meta-openembedded-8c7ffffa07d3c5bb8156a90f4f37dc0cc3166153.tar.gz |
tomoyo-tools: Define SBINDIR
default SBINDIR is hardcoded to /sbin which does not work when using
usrmerge
Signed-off-by: Khem Raj <raj.khem@gmail.com>
-rw-r--r-- | meta-oe/recipes-security/tomoyo-tools/tomoyo-tools_2.5.0.bb | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/meta-oe/recipes-security/tomoyo-tools/tomoyo-tools_2.5.0.bb b/meta-oe/recipes-security/tomoyo-tools/tomoyo-tools_2.5.0.bb index a1c4cc9eb..d9f09d174 100644 --- a/meta-oe/recipes-security/tomoyo-tools/tomoyo-tools_2.5.0.bb +++ b/meta-oe/recipes-security/tomoyo-tools/tomoyo-tools_2.5.0.bb | |||
@@ -26,5 +26,5 @@ do_compile () { | |||
26 | } | 26 | } |
27 | 27 | ||
28 | do_install() { | 28 | do_install() { |
29 | oe_runmake install INSTALLDIR=${D} | 29 | oe_runmake install SBINDIR=${base_sbindir} INSTALLDIR=${D} |
30 | } | 30 | } |