summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorGustavo Zacarias <gustavo@zacarias.com.ar>2013-09-03 10:24:04 -0300
committerHans de Goede <hdegoede@redhat.com>2013-09-06 14:15:48 +0200
commit5f366718c468231a4b233e437a8b3854c72f3310 (patch)
tree6ae3ca40a1a7ca4d1cae950fd5b79a835dce9634
parent0c3d17c9b1c96afe6889ae4595abb22072fc1c0d (diff)
downloadlibusb-5f366718c468231a4b233e437a8b3854c72f3310.tar.gz
configure.ac: uclinux is also linux
When the tuple contains uclinux rather than just linux (nommu flat targets) configure will fail with an unknown operating system. Signed-off-by: Gustavo Zacarias <gustavo@zacarias.com.ar> Signed-off-by: Hans de Goede <hdegoede@redhat.com>
-rw-r--r--configure.ac2
1 files changed, 1 insertions, 1 deletions
diff --git a/configure.ac b/configure.ac
index bb924f1..9a2e24d 100644
--- a/configure.ac
+++ b/configure.ac
@@ -47,7 +47,7 @@ LTLDFLAGS="${LTLDFLAGS} -no-undefined"
AC_MSG_CHECKING([operating system])
case $host in
-*-linux*)
+*-linux* | *-uclinux*)
AC_MSG_RESULT([Linux])
backend="linux"
threads="posix"