summaryrefslogtreecommitdiffstats
path: root/functions.sh.in
diff options
context:
space:
mode:
Diffstat (limited to 'functions.sh.in')
-rw-r--r--functions.sh.in4
1 files changed, 2 insertions, 2 deletions
diff --git a/functions.sh.in b/functions.sh.in
index 4bdda5d..e9b7280 100644
--- a/functions.sh.in
+++ b/functions.sh.in
@@ -17,8 +17,8 @@ hostspec_to_libc() {
case "$1" in
*-*-*-uclibc*) echo "uclibc" ;;
*-*-*-musl*) echo "musl" ;;
- *-*-*-gnu*) echo "eglibc" ;;
- *) echo "uclibc" ;;
+ *-*-*-gnu*) echo "glibc" ;;
+ *) echo "unknown" ;;
esac
}