diff options
author | Khem Raj <raj.khem@gmail.com> | 2024-08-14 14:23:42 -0700 |
---|---|---|
committer | Khem Raj <raj.khem@gmail.com> | 2024-08-14 21:46:26 -0700 |
commit | 2dcf9b377244125535d3c74d695f88c99ebc4ebe (patch) | |
tree | 5fae4930aefbfd4dc06f74f3022b09f2857f8fdc | |
parent | aa94d5221e7e6dbed8d8bf5be70eb0fc3fd3237e (diff) | |
download | meta-openembedded-2dcf9b377244125535d3c74d695f88c99ebc4ebe.tar.gz |
lprng: Specify target paths for needed utilities
pr,openssl,chown,chgrp are guessed during configure and they are
found on host, sometimes under native sysroot and some under HOSTTOOLS
which is not right, therefore point to target locations of these tools
Fixes all errors like below
File /usr/sbin/lprng_certs in package lprng contains reference to TMPDIR
Signed-off-by: Khem Raj <raj.khem@gmail.com>
-rw-r--r-- | meta-oe/recipes-extended/lprng/lprng_3.8.C.bb | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/meta-oe/recipes-extended/lprng/lprng_3.8.C.bb b/meta-oe/recipes-extended/lprng/lprng_3.8.C.bb index 5d5453ca18..c1a8aadff8 100644 --- a/meta-oe/recipes-extended/lprng/lprng_3.8.C.bb +++ b/meta-oe/recipes-extended/lprng/lprng_3.8.C.bb | |||
@@ -14,7 +14,9 @@ UPSTREAM_CHECK_REGEX = "(?P<pver>\d+(\.\d+)+)\.tar" | |||
14 | 14 | ||
15 | inherit autotools gettext | 15 | inherit autotools gettext |
16 | 16 | ||
17 | EXTRA_OECONF = "--disable-ssl --disable-kerberos --enable-force_localhost" | 17 | EXTRA_OECONF = "--disable-ssl --disable-kerberos --enable-force_localhost \ |
18 | CHOWN=${base_bindir}/chown CHGRP=${base_bindir}/chgrp \ | ||
19 | OPENSSL=${bindir}/openssl PRUTIL=${bindir}/pr" | ||
18 | FILES:${PN}-dbg += "${libdir}/lprng/filters/.debug" | 20 | FILES:${PN}-dbg += "${libdir}/lprng/filters/.debug" |
19 | 21 | ||
20 | # configure: WARNING: Program 'clear' is not found. Set environment CLEAR=no if you do not want to use it | 22 | # configure: WARNING: Program 'clear' is not found. Set environment CLEAR=no if you do not want to use it |