]> git.ipfire.org Git - thirdparty/lxc.git/commitdiff
Add arm as a supported srcarch
authorSerge Hallyn <serge.hallyn@canonical.com>
Sun, 24 Jul 2011 22:22:50 +0000 (00:22 +0200)
committerDaniel Lezcano <dlezcano@fr.ibm.com>
Sun, 24 Jul 2011 22:22:50 +0000 (00:22 +0200)
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 <serge.hallyn@canonical.com>
Signed-off-by: Daniel Lezcano <dlezcano@fr.ibm.com>
config/linux.m4

index 338f39361fb8ef8945d8ccbc9f1abaf6be740b71..e117923f09d0cde669ac303955935ba3df9fa5e3 100644 (file)
@@ -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