From: Kevin Cernekee Date: Sat, 25 Feb 2012 23:49:48 +0000 (+0100) Subject: Add MIPS as a supported architecture X-Git-Tag: lxc-0.8.0-rc2~39 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=c75083d7f36ff16ee22b3089b3deacec6a2b3cb9;p=thirdparty%2Flxc.git Add MIPS as a supported architecture The issue is similar to what was fixed in commit e7eb632c for ARM: the "configure" script errors out because it is unable to set LINUX_SRCARCH. Fix is to add MIPS to the list. Signed-off-by: Kevin Cernekee Signed-off-by: Daniel Lezcano --- diff --git a/config/linux.m4 b/config/linux.m4 index e117923f0..67fb98c33 100644 --- a/config/linux.m4 +++ b/config/linux.m4 @@ -66,6 +66,7 @@ AC_DEFUN([AC_LINUX_SRCARCH],[ powerpc*-*) LINUX_SRCARCH=powerpc;; s390*-*) LINUX_SRCARCH=s390;; arm*-*) LINUX_SRCARCH=arm;; + mips*-*) LINUX_SRCARCH=mips;; *) AC_MSG_ERROR([architecture ${host} not supported]);; esac