diff options
author | Jeremy A. Puhlman <jpuhlman@mvista.com> | 2022-06-30 09:31:23 -0700 |
---|---|---|
committer | Armin Kuster <akuster808@gmail.com> | 2022-07-05 19:26:50 -0400 |
commit | 7ad5f6a9da1b5a55699d5b8e7ad80476ad5a4695 (patch) | |
tree | 76baa1c79e75397559beafe18629b8a79ff1a952 | |
parent | a0d7194b215e89753541bb289d8160a591dae02a (diff) | |
download | meta-security-7ad5f6a9da1b5a55699d5b8e7ad80476ad5a4695.tar.gz |
python3-privacyidea: add correct path to lib/privacyidea
Nothing in getting installed in ${datadir}/lib, it is all going to
${prefix}/lib. setuptools pulls in ${libdir}/* so for the base lib
case of ${prefix}/lib the build works. If libdir is something else
lib64 for example, its still ending up in ${prefix}/lib and it fails
to build.
Set value to correct path as it is being installed.
Signed-off-by: Jeremy A. Puhlman <jpuhlman@mvista.com>
Signed-off-by: Armin Kuster <akuster808@gmail.com>
-rw-r--r-- | dynamic-layers/meta-python/recipes-security/mfa/python3-privacyidea_3.6.2.bb | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/dynamic-layers/meta-python/recipes-security/mfa/python3-privacyidea_3.6.2.bb b/dynamic-layers/meta-python/recipes-security/mfa/python3-privacyidea_3.6.2.bb index 40f6d15..8b6af5e 100644 --- a/dynamic-layers/meta-python/recipes-security/mfa/python3-privacyidea_3.6.2.bb +++ b/dynamic-layers/meta-python/recipes-security/mfa/python3-privacyidea_3.6.2.bb | |||
@@ -19,7 +19,7 @@ GROUPADD_PARAM:${PN} = "--system privacyidea" | |||
19 | USERADD_PARAM:${PN} = "--system -g privacyidea -o -r -d /opt/${BPN} \ | 19 | USERADD_PARAM:${PN} = "--system -g privacyidea -o -r -d /opt/${BPN} \ |
20 | --shell /bin/false privacyidea" | 20 | --shell /bin/false privacyidea" |
21 | 21 | ||
22 | FILES:${PN} += " ${prefix}/etc/privacyidea/* ${datadir}/lib/privacyidea/*" | 22 | FILES:${PN} += " ${prefix}/etc/privacyidea/* ${prefix}/lib/privacyidea/*" |
23 | 23 | ||
24 | RDEPENDS:${PN} += " bash perl freeradius-mysql freeradius-utils" | 24 | RDEPENDS:${PN} += " bash perl freeradius-mysql freeradius-utils" |
25 | 25 | ||