diff options
author | davidovski <david@davidovski.xyz> | 2022-05-18 09:56:56 +0100 |
---|---|---|
committer | davidovski <david@davidovski.xyz> | 2022-05-18 09:56:56 +0100 |
commit | 4cfc98e1be889f359613a54010b67e13c673e4ab (patch) | |
tree | 085c6f015955435d1138078984a897491b1b1e37 /repo/system/musl/toolchain-musl.xibuild | |
parent | da500224f138f6d4800d248c24228987a0a149de (diff) | |
parent | dccab9b94dcfc5e040647210ba22b9cc4bddc742 (diff) |
Merge branch 'master' of git.cheetah.remote:xilinux/buildfiles
Diffstat (limited to 'repo/system/musl/toolchain-musl.xibuild')
-rw-r--r-- | repo/system/musl/toolchain-musl.xibuild | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/repo/system/musl/toolchain-musl.xibuild b/repo/system/musl/toolchain-musl.xibuild index ed46c6e..4f73171 100644 --- a/repo/system/musl/toolchain-musl.xibuild +++ b/repo/system/musl/toolchain-musl.xibuild @@ -12,4 +12,16 @@ build () { package () { make install DESTDIR=$PKG_DEST + + rm -v $PKG_DEST/lib/ld-musl-x86_64.so.1 + ln -sv libc.so $PKG_DEST/lib/ld-musl-x86_64.so.1 + + mkdir $PKG_DEST/bin + mkdir $PKG_DEST/etc + ln -sv ../lib/libc.so $PKG_DEST/bin/ldd + + cat > $PKG_DEST/etc/ld-musl-x86_64.path << "EOF" +$PKG_DEST/lib +EOF + } |