From: Rich Felker Date: Sun, 5 Aug 2012 21:23:38 +0000 (-0400) Subject: make configure accept mipsel X-Git-Url: http://nsz.repo.hu/git/?a=commitdiff_plain;h=721564a2640604f0291ae02a0439859ddd2167b3;p=musl make configure accept mipsel --- diff --git a/configure b/configure index 7c5eeba2..5beaa109 100755 --- a/configure +++ b/configure @@ -197,7 +197,7 @@ case "$target" in arm*) ARCH=arm ;; i?86*) ARCH=i386 ;; x86_64*) ARCH=x86_64 ;; -mips-*) ARCH=mips ;; +mips-*|mipsel-*) ARCH=mips ;; unknown) fail "$0: unable to detect target arch; try $0 --target=..." ;; *) fail "$0: unknown or unsupported target \"$target\"" ;; esac