git: 0c13aa0d1183 - main - math/suitesparse: fix a typo

From: Thierry Thomas <thierry_at_FreeBSD.org>
Date: Fri, 20 Jan 2023 16:11:27 UTC
The branch main has been updated by thierry:

URL: https://cgit.FreeBSD.org/ports/commit/?id=0c13aa0d11833e9988bae2fcbd38d2e649013594

commit 0c13aa0d11833e9988bae2fcbd38d2e649013594
Author:     Thierry Thomas <thierry@FreeBSD.org>
AuthorDate: 2023-01-20 15:58:00 +0000
Commit:     Thierry Thomas <thierry@FreeBSD.org>
CommitDate: 2023-01-20 16:11:25 +0000

    math/suitesparse: fix a typo
    
    It produced a warning in poudriere:
    Warning: math/suitesparse dependency on math/suitesparse-camd has wrong PKGNAME of 'suitesparse-btf' but should be 'suitesparse-camd'
    
    PR:             269068
    Reported by:    peter.larsen (at) larsendata.dk
---
 math/suitesparse/Makefile | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/math/suitesparse/Makefile b/math/suitesparse/Makefile
index b78c7d27c3fd..0705355ce59b 100644
--- a/math/suitesparse/Makefile
+++ b/math/suitesparse/Makefile
@@ -8,7 +8,7 @@ WWW=		https://faculty.cse.tamu.edu/davis/suitesparse.html
 
 RUN_DEPENDS=	suitesparse-amd>0:math/suitesparse-amd			\
 		suitesparse-btf>0:math/suitesparse-btf			\
-		suitesparse-btf>0:math/suitesparse-camd			\
+		suitesparse-camd>0:math/suitesparse-camd		\
 		suitesparse-ccolamd>0:math/suitesparse-ccolamd		\
 		suitesparse-cholmod>0:math/suitesparse-cholmod		\
 		suitesparse-colamd>0:math/suitesparse-colamd		\