Commit e7eb632c by Serge Hallyn Committed by Daniel Lezcano

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: 's avatarSerge Hallyn <serge.hallyn@canonical.com> Signed-off-by: 's avatarDaniel Lezcano <dlezcano@fr.ibm.com>
parent c011782c
...@@ -65,6 +65,7 @@ AC_DEFUN([AC_LINUX_SRCARCH],[ ...@@ -65,6 +65,7 @@ AC_DEFUN([AC_LINUX_SRCARCH],[
x86_64-*) LINUX_SRCARCH=x86;; x86_64-*) LINUX_SRCARCH=x86;;
powerpc*-*) LINUX_SRCARCH=powerpc;; powerpc*-*) LINUX_SRCARCH=powerpc;;
s390*-*) LINUX_SRCARCH=s390;; s390*-*) LINUX_SRCARCH=s390;;
arm*-*) LINUX_SRCARCH=arm;;
*) AC_MSG_ERROR([architecture ${host} not supported]);; *) AC_MSG_ERROR([architecture ${host} not supported]);;
esac esac
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment