diff options
-rw-r--r-- | toolchain/external-toolchain/ext-tool.mk | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/toolchain/external-toolchain/ext-tool.mk b/toolchain/external-toolchain/ext-tool.mk index d59178116..39961843e 100644 --- a/toolchain/external-toolchain/ext-tool.mk +++ b/toolchain/external-toolchain/ext-tool.mk @@ -216,7 +216,7 @@ check_uclibc_feature = \ # check_uclibc = \ SYSROOT_DIR="$(strip $1)"; \ - if ! test -f $${SYSROOT_DIR}/lib/ld-uClibc.so.* ; then \ + if ! test -f $${SYSROOT_DIR}/lib/ld*-uClibc.so.* ; then \ echo "Incorrect selection of the C library"; \ exit -1; \ fi; \ |