2010-04-14 Miguel de Icaza <miguel@novell.com>
authorMiguel de Icaza <miguel@gnome.org>
Wed, 14 Apr 2010 19:50:58 +0000 (19:50 -0000)
committerMiguel de Icaza <miguel@gnome.org>
Wed, 14 Apr 2010 19:50:58 +0000 (19:50 -0000)
* configure.in: turn the AC_MSG_ERROR into a AC_MSG_WARN since in
Andrew's configuration this aborts the build:

 host=i686-pc-linux-gnu != target=i586-suse-linux

And I no longer remember why I added that error in the first
place (we need to determine perhaps the arch/OS but it is
difficult with those strings).

svn path=/trunk/mono/; revision=155422

ChangeLog
configure.in

index 81ce2effc21dd2798309ef051c7f848afb16410c..5d0e0fa26c29688f6bc5d7fc7478e277377c59cb 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,14 @@
+2010-04-14  Miguel de Icaza  <miguel@novell.com>
+
+       * configure.in: turn the AC_MSG_ERROR into a AC_MSG_WARN since in
+       Andrew's configuration this aborts the build:
+
+        host=i686-pc-linux-gnu != target=i586-suse-linux
+
+       And I no longer remember why I added that error in the first
+       place (we need to determine perhaps the arch/OS but it is
+       difficult with those strings).
+
 2010-04-08  Andreia Gaita  <avidigal@novell.com>
 
        * configure.in: Add an extra "only" option to --with-moonlight. This
index 1bf858bcbf97244b29172cbc35beea004c33769f..efa8dfebf94e240dedd689139be0926c6d98090f 100644 (file)
@@ -2231,7 +2231,7 @@ if test "x$host" != "x$target"; then
                target_byte_order=G_BIG_ENDIAN
                ;;
        *)
-               AC_MSG_ERROR([Cross compiling is only supported for targets matching 'powerpc64-{ps3,xbox360}-linux-gnu'])
+               AC_MSG_WARN([Cross compiling is only supported for targets matching 'powerpc64-{ps3,xbox360}-linux-gnu'])
        esac
 fi