diff options
author | Stefan Eßer <se@FreeBSD.org> | 2021-10-28 12:28:24 +0000 |
---|---|---|
committer | Stefan Eßer <se@FreeBSD.org> | 2021-10-29 09:50:18 +0000 |
commit | 819f25b36d45b8ac5593ec8e6f470d9ad454b08a (patch) | |
tree | a9ad0caa2a052fc695c1cdede2866080f5660431 /lang/io/Makefile | |
parent | f2b9a177fa65d8010c60d9dd2803a4b4bb9bcec8 (diff) |
*/*: Remove redundant '-[0-9]*' from CONFLICTS
The conflict checks compare the patterns first against the package
names without version (as reported by "pkg query "%n"), then - if
there was no match - agsinst the full package names including the
version (as reported by "pkg query "%n-%v").
Many CONFLICTS definitions used patterns like "bash-[0-9]*" to filter
for the bash package in any version. But that pattern is functionally
identical with just "bash".
Approved by: portmgr (blanket)
Diffstat (limited to 'lang/io/Makefile')
-rw-r--r-- | lang/io/Makefile | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lang/io/Makefile b/lang/io/Makefile index 16f3107d1aaf..ed25eaba6c2c 100644 --- a/lang/io/Makefile +++ b/lang/io/Makefile @@ -13,7 +13,7 @@ LICENSE= BSD3CLAUSE BROKEN_armv6= fails to compile: ucontext.h: expected parameter declarator BROKEN_armv7= fails to compile: Coro.c:392:2: no member named 'arm_r0' in 'mcontext_t' -CONFLICTS= io-devel-[0-9]* +CONFLICTS= io-devel USES= cmake:noninja compiler:c11 ssl |