Skip site navigation (1)Skip section navigation (2)
Date:      Mon, 5 Jun 2023 11:27:12 GMT
From:      Matthew Seaman <matthew@FreeBSD.org>
To:        ports-committers@FreeBSD.org, dev-commits-ports-all@FreeBSD.org, dev-commits-ports-main@FreeBSD.org
Subject:   git: d4fa0e3f4e28 - main - graphics/tippecanoe: fix 'malformed conditional'
Message-ID:  <202306051127.355BRCOt005553@gitrepo.freebsd.org>

next in thread | raw e-mail | index | archive | help
The branch main has been updated by matthew:

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

commit d4fa0e3f4e28f543e2ee729d93ca3ea48496c8ff
Author:     Matthew Seaman <matthew@FreeBSD.org>
AuthorDate: 2023-06-05 11:23:12 +0000
Commit:     Matthew Seaman <matthew@FreeBSD.org>
CommitDate: 2023-06-05 11:27:07 +0000

    graphics/tippecanoe: fix 'malformed conditional'
    
    ```
    make: "/home/matthew/work/ports/graphics/tippecanoe/Makefile" line 26: Malformed conditional (${ARCH} == i386)
    ```
    
    For some reason this didn't show up in poudriere test builds, but it
    does if you just invoke make from the CLI.
    
    Reported by:    FreshPorts Sanity Checking
---
 graphics/tippecanoe/Makefile | 2 ++
 1 file changed, 2 insertions(+)

diff --git a/graphics/tippecanoe/Makefile b/graphics/tippecanoe/Makefile
index 9b059606ee0d..cd354b628058 100644
--- a/graphics/tippecanoe/Makefile
+++ b/graphics/tippecanoe/Makefile
@@ -21,6 +21,8 @@ PLIST_FILES=	bin/tile-join bin/tippecanoe bin/tippecanoe-decode \
 		bin/tippecanoe-enumerate bin/tippecanoe-json-tool \
 		man/man1/tippecanoe.1.gz
 
+.include <bsd.port.options.mk>
+
 # Suppress a clang-16 error on 32-bit arch:
 #  non-constant-expression cannot be narrowed from type 'uint64_t'
 .if ${ARCH} == i386



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?202306051127.355BRCOt005553>