linux-uclibc* targets should be handled by linux-gnu backend as well
diff --git a/configure.ac b/configure.ac
index f9ff113..47bd87e 100644
--- a/configure.ac
+++ b/configure.ac
@@ -32,7 +32,8 @@
 AC_CANONICAL_HOST
 
 case "${host_os}" in
-    linux-gnu*)	HOST_OS="linux-gnu" ;;
+    linux-gnu*) HOST_OS="linux-gnu" ;;
+    linux-uclibc*) HOST_OS="linux-gnu" ;;
     *)		AC_MSG_ERROR([unkown host-os ${host_os}]) ;;
 esac
 AC_SUBST(HOST_OS)