From: Serge Hallyn Date: Sun, 24 Jul 2011 22:22:50 +0000 (+0200) Subject: Add arm as a supported srcarch X-Git-Tag: lxc-0.7.5~18 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=e7eb632cb4365d800939ab20021920468c1ce7db;p=thirdparty%2Flxc.git Add arm as a supported srcarch Otherwise building on armel fails with checking for linux SRCARCH... configure: error: architecture arm-unknown-linux-gnueabi not supported See https://bugs.launchpad.net/ubuntu/+source/lxc/+bug/745884 for details. Signed-off-by: Serge Hallyn Signed-off-by: Daniel Lezcano --- diff --git a/config/linux.m4 b/config/linux.m4 index 338f39361..e117923f0 100644 --- a/config/linux.m4 +++ b/config/linux.m4 @@ -65,6 +65,7 @@ AC_DEFUN([AC_LINUX_SRCARCH],[ x86_64-*) LINUX_SRCARCH=x86;; powerpc*-*) LINUX_SRCARCH=powerpc;; s390*-*) LINUX_SRCARCH=s390;; + arm*-*) LINUX_SRCARCH=arm;; *) AC_MSG_ERROR([architecture ${host} not supported]);; esac