diff options
author | Natanael Copa <ncopa@alpinelinux.org> | 2013-07-19 12:59:47 +0000 |
---|---|---|
committer | Natanael Copa <ncopa@alpinelinux.org> | 2013-07-19 12:59:47 +0000 |
commit | 3935984872fce282ad1f82ead0385748e8393fb0 (patch) | |
tree | 9539865335a2f852c1f4caf97106d332b1ddfbb8 | |
parent | cb21e18921e5e36c69ba11aa8f54e38aba842cc7 (diff) | |
download | abuild-3935984872fce282ad1f82ead0385748e8393fb0.tar.gz abuild-3935984872fce282ad1f82ead0385748e8393fb0.tar.bz2 abuild-3935984872fce282ad1f82ead0385748e8393fb0.tar.xz abuild-3935984872fce282ad1f82ead0385748e8393fb0.zip |
abuild: dont worry about ALPINE_LIBC
we better fix the affected apkbuilds
-rwxr-xr-x | abuild.in | 16 |
1 files changed, 6 insertions, 10 deletions
@@ -171,16 +171,12 @@ default_sanitycheck() { # check CLIBC if [ -z "$CLIBC" ]; then - if [ -z "$ALPINE_LIBC" ]; then - case "$CHOST" in - *-*-*-uclibc*) CLIBC="uclibc" ;; - *-*-*-musl*) CLIBC="musl" ;; - *-*-*-gnu*) CLIBC="eglibc" ;; - *) CLIBC="uclibc" ;; - esac - else - CLIBC="$ALPINE_LIBC" - fi + case "$CHOST" in + *-*-*-uclibc*) CLIBC="uclibc" ;; + *-*-*-musl*) CLIBC="musl" ;; + *-*-*-gnu*) CLIBC="eglibc" ;; + *) CLIBC="uclibc" ;; + esac fi for i in $install; do |