From 66a1c5ebd5d33875cae4b5427f9bcaccc07116a5 Mon Sep 17 00:00:00 2001 From: Johannes Date: Wed, 5 Dec 2018 22:49:06 +0100 Subject: [PATCH] gcc: fix typo in mips32r2 [ci skip] --- srcpkgs/gcc/template | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/srcpkgs/gcc/template b/srcpkgs/gcc/template index 04179f03cf1..cf1460c4306 100644 --- a/srcpkgs/gcc/template +++ b/srcpkgs/gcc/template @@ -161,8 +161,8 @@ do_configure() { case "$XBPS_TARGET_MACHINE" in mipselhf-musl) _args+=" --with-arch=mips32r2 --with-float=hard"; _hash=sysv;; mipsel-musl) _args+=" --with-arch=mips32r2 --with-float=soft"; _hash=sysv;; - mipshf-musl) _args+=" --with-arch=mip32r2 --with-float=hard";; - mips-musl) _args+=" --with-arch=mip32r2 --with-float=soft";; + mipshf-musl) _args+=" --with-arch=mips32r2 --with-float=hard";; + mips-musl) _args+=" --with-arch=mips32r2 --with-float=soft";; armv5*) _args+=" --with-arch=armv5te --with-float=soft";; armv6l*) _args+=" --with-arch=armv6 --with-fpu=vfp --with-float=hard";; armv7l*) _args+=" --with-arch=armv7-a --with-fpu=vfpv3 --with-float=hard";;