make configure accept mipsel

This commit is contained in:
Rich Felker 2012-08-05 17:23:38 -04:00
parent 3a1e7566db
commit 721564a264
1 changed files with 1 additions and 1 deletions

2
configure vendored
View File

@ -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