diff options
author | Felix Palmen <zirias@FreeBSD.org> | 2022-08-09 18:56:11 +0000 |
---|---|---|
committer | Felix Palmen <zirias@FreeBSD.org> | 2022-08-10 10:07:24 +0000 |
commit | 1303528e49c7fec9160e60090ca0a2e7713f5294 (patch) | |
tree | ecbd156caa078e96e4f34efde7c5b2f29e38c17b | |
parent | f5b718844fca846562df345c0b1364a758292f2f (diff) | |
download | ports-1303528e49c7fec9160e60090ca0a2e7713f5294.tar.gz ports-1303528e49c7fec9160e60090ca0a2e7713f5294.zip |
lang/mono6.8: Fix build with archivers/brotli
Add USES=localbase, so in-tree headers are found before headers in
LOCALBASE. This fixes the build with archivers/brotli installed.
CONFLICTS isn't an option any more, after
478e294ddedbe6444330b00512a09406265bea71, archivers/brotli is an
indirect build dependency.
PR: 265745
Approved by: portmgr (build fix blanket), tcberner (mentor)
-rw-r--r-- | lang/mono6.8/Makefile | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/lang/mono6.8/Makefile b/lang/mono6.8/Makefile index 79091a92c5f9..d0d6605cdee3 100644 --- a/lang/mono6.8/Makefile +++ b/lang/mono6.8/Makefile @@ -23,10 +23,9 @@ RUN_DEPENDS= ${PYTHON_PKGNAMEPREFIX}pillow>=0:graphics/py-pillow@${PY_FLAVOR} \ sqlite3>0:databases/sqlite3 \ zip>=0:archivers/zip -CONFLICTS_BUILD= brotli CONFLICTS_INSTALL= certmgr coin-or-disco disco mono mono[0-9]* -USES= autoreconf bison compiler:c11 cpe gmake iconv libtool \ +USES= autoreconf bison compiler:c11 cpe gmake iconv libtool localbase \ pathfix perl5 python:3.6+ shebangfix tar:xz USE_PERL5= build |