git: 1b0033485263 - main - bc: remove MIPS Makefile case

From: Ed Maste <emaste_at_FreeBSD.org>
Date: Wed, 01 Mar 2023 15:39:27 UTC
The branch main has been updated by emaste:

URL: https://cgit.FreeBSD.org/src/commit/?id=1b003348526323d23785648fa449338447daec5f

commit 1b003348526323d23785648fa449338447daec5f
Author:     Ed Maste <emaste@FreeBSD.org>
AuthorDate: 2023-02-27 15:05:16 +0000
Commit:     Ed Maste <emaste@FreeBSD.org>
CommitDate: 2023-03-01 15:38:12 +0000

    bc: remove MIPS Makefile case
    
    MIPS support has been removed from FreeBSD.
    
    Sponsored by: The FreeBSD Foundation
---
 usr.bin/gh-bc/Makefile | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/usr.bin/gh-bc/Makefile b/usr.bin/gh-bc/Makefile
index 223440f2f54d..6554d626af89 100644
--- a/usr.bin/gh-bc/Makefile
+++ b/usr.bin/gh-bc/Makefile
@@ -71,7 +71,7 @@ MAN_SRC_BC=	bc/A.1
 MAN_SRC_DC=	dc/A.1
 
 # prevent floating point incompatibilities caused by -flto on some architectures
-.if ${MACHINE_ARCH:Mmips*} == "" && ${MACHINE_ARCH} != riscv64
+.if ${MACHINE_ARCH} != riscv64
 CFLAGS+=	-flto
 .endif