383f912ed2
Fixes: http://autobuild.buildroot.net/results/848/848331218676b4e2be78f805ba3a74cfaf87c56f/ Signed-off-by: Gustavo Zacarias <gustavo@zacarias.com.ar> Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
27 lines
649 B
Diff
27 lines
649 B
Diff
From 71773664f9e7c15bb71ca07fcf9be9efc95abe44 Mon Sep 17 00:00:00 2001
|
|
From: Gustavo Zacarias <gustavo@zacarias.com.ar>
|
|
Date: Tue, 3 Jun 2014 16:42:45 -0300
|
|
Subject: [PATCH] configure: uclinux is also linux (nommu)
|
|
|
|
Signed-off-by: Gustavo Zacarias <gustavo@zacarias.com.ar>
|
|
---
|
|
configure.ac | 2 +-
|
|
1 file changed, 1 insertion(+), 1 deletion(-)
|
|
|
|
diff --git a/configure.ac b/configure.ac
|
|
index 255e457..35287f9 100644
|
|
--- a/configure.ac
|
|
+++ b/configure.ac
|
|
@@ -35,7 +35,7 @@ AC_DISABLE_STATIC
|
|
LT_INIT
|
|
CHECK_GCC_FVISIBILITY
|
|
case "$host" in
|
|
-*-*-linux*) ;;
|
|
+*-*-linux* | *-*-uclinux*) ;;
|
|
*) AC_MSG_ERROR([Linux only, dude!]);;
|
|
esac
|
|
|
|
--
|
|
1.8.5.5
|
|
|