Date: Sun, 30 Jul 2023 22:59:53 GMT From: Robert Clausecker <fuz@FreeBSD.org> To: ports-committers@FreeBSD.org, dev-commits-ports-all@FreeBSD.org, dev-commits-ports-main@FreeBSD.org Subject: git: 1b46f3bddda1 - main - graphics/tippecanoe: fix build on armv7 Message-ID: <202307302259.36UMxr8J001477@gitrepo.freebsd.org>
next in thread | raw e-mail | index | archive | help
The branch main has been updated by fuz: URL: https://cgit.FreeBSD.org/ports/commit/?id=1b46f3bddda1f8e0ba018aa94f7e206408c30331 commit 1b46f3bddda1f8e0ba018aa94f7e206408c30331 Author: Robert Clausecker <fuz@FreeBSD.org> AuthorDate: 2023-07-28 20:28:07 +0000 Commit: Robert Clausecker <fuz@FreeBSD.org> CommitDate: 2023-07-30 22:59:09 +0000 graphics/tippecanoe: fix build on armv7 Same fix as for i386. Approved by: portmgr (build fix blanket) Fixes: 1d61daa912396e4f5d31d130fe9600540ba6644b --- graphics/tippecanoe/Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/graphics/tippecanoe/Makefile b/graphics/tippecanoe/Makefile index cd354b628058..8b2d68bb385b 100644 --- a/graphics/tippecanoe/Makefile +++ b/graphics/tippecanoe/Makefile @@ -25,7 +25,7 @@ PLIST_FILES= bin/tile-join bin/tippecanoe bin/tippecanoe-decode \ # Suppress a clang-16 error on 32-bit arch: # non-constant-expression cannot be narrowed from type 'uint64_t' -.if ${ARCH} == i386 +.if ${ARCH} == i386 || ${ARCH:Marmv?} != "" CXXFLAGS+= -Wno-narrowing .endif
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?202307302259.36UMxr8J001477>