Use special case for uclibc-based prefix

pull/402/head
Dmitry Ilyin 2022-08-25 17:07:53 +03:00
parent 0e5ce2322a
commit 7b31ebcc96
1 changed files with 4 additions and 1 deletions

View File

@ -423,7 +423,10 @@ jobs:
LIBC=$(echo $TOOLNAME | cut -d '-' -f 3)
case "$LIBC" in
musl|uclibc)
uclibc)
PREFIX="${PREFIX}${LIBC}gnu${ABI}"
;;
musl)
PREFIX="${PREFIX}${LIBC}${ABI}"
;;
glibc)