git: a00f9e4e8181 - main - scsi: Stop installing both cam.4 and CAM.4
- Go to: [ bottom of page ] [ top of archives ] [ this month ]
Date: Fri, 15 Mar 2024 15:01:59 UTC
The branch main has been updated by imp: URL: https://cgit.FreeBSD.org/src/commit/?id=a00f9e4e81810374755910ad7abf0fc335dcf86d commit a00f9e4e81810374755910ad7abf0fc335dcf86d Author: Warner Losh <imp@FreeBSD.org> AuthorDate: 2024-03-15 04:33:25 +0000 Commit: Warner Losh <imp@FreeBSD.org> CommitDate: 2024-03-15 15:01:25 +0000 scsi: Stop installing both cam.4 and CAM.4 There's no real benefit from installing both cam.4 and CAM.4. The latter is not an kernel option. This hits a pathological case in mlinks: we're trying to link to another file and the second link fails on case-preserving, case-insensitive filesystems, like on MacOS by default. Since we don't need both, avoid this pathological case. Sponsored by: Netflix Differential Revision: https://reviews.freebsd.org/D44346 --- share/man/man4/Makefile | 7 +++---- 1 file changed, 3 insertions(+), 4 deletions(-) diff --git a/share/man/man4/Makefile b/share/man/man4/Makefile index cfa42afa6a71..c3f5e3223bf9 100644 --- a/share/man/man4/Makefile +++ b/share/man/man4/Makefile @@ -734,10 +734,9 @@ MLINKS+=re.4 if_re.4 MLINKS+=rl.4 if_rl.4 MLINKS+=rtwn_pci.4 if_rtwn_pci.4 MLINKS+=rue.4 if_rue.4 -MLINKS+=scsi.4 CAM.4 \ - scsi.4 cam.4 \ - scsi.4 scbus.4 \ - scsi.4 SCSI.4 +MLINKS+=scsi.4 cam.4 +MLINKS+=scsi.4 scbus.4 +MLINKS+=scsi.4 SCSI.4 MLINKS+=sge.4 if_sge.4 MLINKS+=sis.4 if_sis.4 MLINKS+=sk.4 if_sk.4