]> git.ipfire.org Git - thirdparty/lxc.git/commitdiff
Add MIPS as a supported architecture
authorKevin Cernekee <cernekee@gmail.com>
Sat, 25 Feb 2012 23:49:48 +0000 (00:49 +0100)
committerDaniel Lezcano <daniel.lezcano@free.fr>
Sat, 25 Feb 2012 23:49:48 +0000 (00:49 +0100)
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 <cernekee@gmail.com>
Signed-off-by: Daniel Lezcano <dlezcano@fr.ibm.com>
config/linux.m4

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