summaryrefslogtreecommitdiffstats
path: root/meta-oe
diff options
context:
space:
mode:
authorKhem Raj <raj.khem@gmail.com>2024-08-14 14:23:42 -0700
committerArmin Kuster <akuster@mvista.com>2025-04-16 20:30:23 -0400
commit5e235fb2cb8b2c976416ad22c91b2a9ba7e87c03 (patch)
treebed1f8d62511a73e59018224eb8ccf10642db54e /meta-oe
parent91d5bfb3dcfd67d35e043b4a5ab1f1b2db5a6636 (diff)
downloadmeta-openembedded-5e235fb2cb8b2c976416ad22c91b2a9ba7e87c03.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> Signed-off-by: Armin Kuster <akuster@mvista.com>
Diffstat (limited to 'meta-oe')
-rw-r--r--meta-oe/recipes-extended/lprng/lprng_3.8.C.bb4
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 73e4eac3dd..cd9d9e8a36 100644
--- a/meta-oe/recipes-extended/lprng/lprng_3.8.C.bb
+++ b/meta-oe/recipes-extended/lprng/lprng_3.8.C.bb
@@ -11,7 +11,9 @@ SRC_URI[sha256sum] = "694a1747a96385b89e93f43343bf35cee5c8c73353a83814106911c99f
11 11
12inherit autotools gettext 12inherit autotools gettext
13 13
14EXTRA_OECONF = "--disable-ssl --disable-kerberos --enable-force_localhost" 14EXTRA_OECONF = "--disable-ssl --disable-kerberos --enable-force_localhost \
15 CHOWN=${base_bindir}/chown CHGRP=${base_bindir}/chgrp \
16 OPENSSL=${bindir}/openssl PRUTIL=${bindir}/pr"
15FILES:${PN}-dbg += "${libdir}/lprng/filters/.debug" 17FILES:${PN}-dbg += "${libdir}/lprng/filters/.debug"
16 18
17# configure: WARNING: Program 'clear' is not found. Set environment CLEAR=no if you do not want to use it 19# configure: WARNING: Program 'clear' is not found. Set environment CLEAR=no if you do not want to use it