Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/mono/mono.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAlex Rønne Petersen <alexrp@xamarin.com>2013-05-18 02:10:11 +0400
committerAlex Rønne Petersen <alexrp@xamarin.com>2013-05-18 02:10:11 +0400
commit67142699caab67e64354e9f5ebb1b41f0fbcf97c (patch)
tree89427eb426526795035b4d4b700ee993eedc4d1a /configure.in
parentf956a83b65670179cd3d344abb6bdceac29e22fe (diff)
Generalize the ARM pattern match in configure.
The previous one would only work if the 'vendor' part of the target triple equals "unknown" which is a bit of an arbitrary limitation.
Diffstat (limited to 'configure.in')
-rw-r--r--configure.in2
1 files changed, 1 insertions, 1 deletions
diff --git a/configure.in b/configure.in
index 83d8fdafaed..188b470cf5b 100644
--- a/configure.in
+++ b/configure.in
@@ -2677,7 +2677,7 @@ if test "x$host" != "x$target"; then
AC_DEFINE(TARGET_X86, 1, [...])
sizeof_register=4
;;
- arm*-unknown-linux-*)
+ arm*-linux-*)
TARGET=ARM;
arch_target=arm;
AC_DEFINE(TARGET_ARM, 1, [...])