From a00f9e4e81810374755910ad7abf0fc335dcf86d Mon Sep 17 00:00:00 2001 From: Warner Losh Date: Thu, 14 Mar 2024 22:33:25 -0600 Subject: [PATCH] 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 cfa42afa6a7..c3f5e3223bf 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