diff options
author | Rich Felker <dalias@aerifal.cx> | 2012-08-05 17:23:38 -0400 |
---|---|---|
committer | Rich Felker <dalias@aerifal.cx> | 2012-08-05 17:23:38 -0400 |
commit | 721564a2640604f0291ae02a0439859ddd2167b3 (patch) | |
tree | 8b60a6da19f6c8e3c4ccd397626c60fd63326ce2 | |
parent | 3a1e7566dbfc85b397c9c4677606782fd9851ecc (diff) | |
download | musl-721564a2640604f0291ae02a0439859ddd2167b3.tar.gz |
make configure accept mipsel
-rwxr-xr-x | configure | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -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 |