summaryrefslogtreecommitdiffstats
path: root/meta/recipes-core/libxcrypt
diff options
context:
space:
mode:
authorEtienne Cordonnier <ecordonnier@snap.com>2023-05-26 13:51:55 +0200
committerRichard Purdie <richard.purdie@linuxfoundation.org>2023-06-28 07:56:33 +0100
commit2639746ba7f8a651fffaa9819ef9d9df776108e3 (patch)
tree8c4ac0617d04da642fe37dcf9dcbc65c2d802149 /meta/recipes-core/libxcrypt
parent0745cb1cb3d480829ce81645f89d10b37e91e063 (diff)
downloadpoky-2639746ba7f8a651fffaa9819ef9d9df776108e3.tar.gz
libxcrypt: fix hard-coded ".so" extension
2 issues: - the .so extension is hard-coded, and therefore the libxcryt package compiled with meta-darwin is empty, because the dylib files are not contained in FILES_${PN} - nothing actually produces a file libcrypt-*.so (the symlink file is libcrypt.so, without dash), thus defining FILES:${PN} manually to contain libcrypt-*.so has no effect. (From OE-Core rev: 7ed6bfa2428b4f1ba7f09d6e9e67c462ff355153) Signed-off-by: Etienne Cordonnier <ecordonnier@snap.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'meta/recipes-core/libxcrypt')
-rw-r--r--meta/recipes-core/libxcrypt/libxcrypt.inc6
1 files changed, 0 insertions, 6 deletions
diff --git a/meta/recipes-core/libxcrypt/libxcrypt.inc b/meta/recipes-core/libxcrypt/libxcrypt.inc
index 2e4db283bf..e70e8859b1 100644
--- a/meta/recipes-core/libxcrypt/libxcrypt.inc
+++ b/meta/recipes-core/libxcrypt/libxcrypt.inc
@@ -17,12 +17,6 @@ SRC_URI += "file://fix_cflags_handling.patch"
17 17
18PROVIDES = "virtual/crypt" 18PROVIDES = "virtual/crypt"
19 19
20FILES:${PN} = "${libdir}/libcrypt*.so.* \
21 ${libdir}/libcrypt-*.so \
22 ${libdir}/libowcrypt*.so.* \
23 ${libdir}/libowcrypt-*.so \
24"
25
26S = "${WORKDIR}/git" 20S = "${WORKDIR}/git"
27 21
28BUILD_CPPFLAGS = "-I${STAGING_INCDIR_NATIVE}" 22BUILD_CPPFLAGS = "-I${STAGING_INCDIR_NATIVE}"