diff options
author | Waldemar Brodkorb <wbx@openadk.org> | 2024-03-10 05:02:16 +0100 |
---|---|---|
committer | Waldemar Brodkorb <wbx@openadk.org> | 2024-03-11 11:12:44 +0100 |
commit | e0597869a6ba287dac1bb2ea968f5d778330a184 (patch) | |
tree | ab25f337c7e3e93bba897d4bcece4bdc4a199e14 /package/musl | |
parent | 03c84da8ecaeddbf4576c86c2628e2392ca7ee81 (diff) |
musl: fix ld.so link for loongarch64; update QEMU_EFI.fd
Diffstat (limited to 'package/musl')
-rw-r--r-- | package/musl/Makefile | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/package/musl/Makefile b/package/musl/Makefile index 948accabe..4e49aadd9 100644 --- a/package/musl/Makefile +++ b/package/musl/Makefile @@ -29,7 +29,7 @@ INSTALL_STYLE:= manual MUSL_LD_SO:= "`echo 'void main(void) {}' |${TARGET_CC} ${TARGET_CFLAGS} -x c -o \ $(BUILD_DIR)/.musl.tmp - >/dev/null 2>&1 ;\ ${TARGET_COMPILER_PREFIX}readelf -l $(BUILD_DIR)/.musl.tmp 2>/dev/null \ - | grep 'program interpreter: /lib/ld-musl' | sed -e 's|.*lib/||'|sed -e 's|]||' ;\ + | grep 'program interpreter: /lib.*/ld-musl' | sed -e 's|.*lib.*/||'|sed -e 's|]||' ;\ rm $(BUILD_DIR)/.musl.tmp`" # do nothing, musl is already build in toolchain directory |