summaryrefslogtreecommitdiffstats
path: root/meta/recipes-extended/shadow
diff options
context:
space:
mode:
authorAlexander Kanavin <alex.kanavin@gmail.com>2024-01-11 14:15:21 +0100
committerRichard Purdie <richard.purdie@linuxfoundation.org>2024-01-12 11:54:05 +0000
commitea9e07a3e25a687198f6fcda81daff77cf099909 (patch)
tree54c062fd9398659a113b517723605f9015a470e2 /meta/recipes-extended/shadow
parent405cc80b6b1b55c6aacd671024e83ca8eaa2920d (diff)
downloadpoky-ea9e07a3e25a687198f6fcda81daff77cf099909.tar.gz
shadow: link executables statically for -native variant
shadow 4.14.x adds a number of libraries it dynamically links with (md, bsd, attr). This causes troubles in setscene tasks where shadow executables are used (such as useradd), as pulling in the needed dynamic libraries needs unpleasant special-casing. (From OE-Core rev: 495ff95eae14a91c94187f78a0b30c7957c9b168) Signed-off-by: Alexander Kanavin <alex@linutronix.de> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'meta/recipes-extended/shadow')
-rw-r--r--meta/recipes-extended/shadow/shadow.inc10
1 files changed, 10 insertions, 0 deletions
diff --git a/meta/recipes-extended/shadow/shadow.inc b/meta/recipes-extended/shadow/shadow.inc
index c024746d4f..43f456251a 100644
--- a/meta/recipes-extended/shadow/shadow.inc
+++ b/meta/recipes-extended/shadow/shadow.inc
@@ -47,6 +47,16 @@ EXTRA_OECONF += "--without-libcrack \
47 47
48CFLAGS:append:libc-musl = " -DLIBBSD_OVERLAY" 48CFLAGS:append:libc-musl = " -DLIBBSD_OVERLAY"
49 49
50# Force static linking of utilities so we can use from the sysroot/sstate for useradd
51# without worrying about the dependency libraries being available
52LDFLAGS:append:class-native = " -no-pie"
53do_compile:prepend:class-native () {
54 sed -i -e 's#\(LIBS.*\)-lbsd#\1 ${STAGING_LIBDIR}/libbsd.a ${STAGING_LIBDIR}/libmd.a#g' \
55 -e 's#\(LIBBSD.*\)-lbsd#\1 ${STAGING_LIBDIR}/libbsd.a ${STAGING_LIBDIR}/libmd.a#g' \
56 -e 's#\(LIBATTR.*\)-lattr#\1 ${STAGING_LIBDIR}/libattr.a#g' \
57 ${B}/lib/Makefile ${B}/src/Makefile
58}
59
50NSCDOPT = "" 60NSCDOPT = ""
51NSCDOPT:class-native = "--without-nscd" 61NSCDOPT:class-native = "--without-nscd"
52NSCDOPT:class-nativesdk = "--without-nscd" 62NSCDOPT:class-nativesdk = "--without-nscd"