diff options
| author | Etienne Cordonnier <ecordonnier@snap.com> | 2023-07-01 21:11:53 -0700 |
|---|---|---|
| committer | Steve Sakoman <steve@sakoman.com> | 2023-07-12 05:11:37 -1000 |
| commit | a834d9001bb01e6aa893cc1f78aedc1bb7276105 (patch) | |
| tree | 136296822e9186692e53195aca0ba1a3be4357c4 | |
| parent | 2a8a7c9e0d11fe8d9c0d29771a93e7f85488faee (diff) | |
| download | poky-a834d9001bb01e6aa893cc1f78aedc1bb7276105.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: 87d3ad23643abff47ac35ca14f8b4b4bb9ee80da)
Signed-off-by: Etienne Cordonnier <ecordonnier@snap.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
(cherry picked from commit 7ed6bfa2428b4f1ba7f09d6e9e67c462ff355153)
Signed-off-by: Sanjay Chitroda <schitrod@cisco.com>
Signed-off-by: Steve Sakoman <steve@sakoman.com>
| -rw-r--r-- | meta/recipes-core/libxcrypt/libxcrypt.inc | 6 |
1 files changed, 0 insertions, 6 deletions
diff --git a/meta/recipes-core/libxcrypt/libxcrypt.inc b/meta/recipes-core/libxcrypt/libxcrypt.inc index 61b0381076..454a55d73d 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 | ||
| 18 | PROVIDES = "virtual/crypt" | 18 | PROVIDES = "virtual/crypt" |
| 19 | 19 | ||
| 20 | FILES:${PN} = "${libdir}/libcrypt*.so.* \ | ||
| 21 | ${libdir}/libcrypt-*.so \ | ||
| 22 | ${libdir}/libowcrypt*.so.* \ | ||
| 23 | ${libdir}/libowcrypt-*.so \ | ||
| 24 | " | ||
| 25 | |||
| 26 | S = "${WORKDIR}/git" | 20 | S = "${WORKDIR}/git" |
| 27 | 21 | ||
| 28 | BUILD_CPPFLAGS = "-I${STAGING_INCDIR_NATIVE}" | 22 | BUILD_CPPFLAGS = "-I${STAGING_INCDIR_NATIVE}" |
