There is a function to add linker, but it was also added while copying other librares (as dep of libc). Now it is explicitely skipped. Signed-off-by: Lukasz Gut <lgut(a)lgut.eu> --- mbuto | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/mbuto b/mbuto index 1f92bd9..4f860cd 100755 --- a/mbuto +++ b/mbuto @@ -685,6 +685,10 @@ __libs_copy() { [ "$("${BASENAME}" "${__path}")" = "libfakeroot-sysv.so" ] && \ continue + # ld is handled below, skip one reported by libc + [ "$("${BASENAME}" "${__path}")" = "ld-linux-x86-64.so.2" ] && \ + continue + __destpath="${wd}${__path}" [ -f "${__destpath}" ] && continue -- 2.46.1