git: 9front

Download patch

ref: 7f97283caf68c268e67d612a89c156918b4f8be8
parent: 03232a78325bd3a938a0332024af172b03f5349a
author: Anthony Martin <ality@pbrane.org>
date: Sat Jun 26 20:13:58 EDT 2021

manual: don't match nonexistent file while preprocessing

Authsrv(6) used to be called auth(6) before
the fourth edition and was preprocessed by
eqn(6) before the third edition. The mkfile
was never updated to reflect the changes.

All other files are accounted for:

% cd /sys/man
% for(i in TS EQ PS G1) echo $i `{grep -l '^\.'$i ?/[0-9a-z]*}
TS 1/tbl
EQ 1/eqn 3/usb
PS 1/pic
G1 1/grap
%


--- a/sys/man/mkfile
+++ b/sys/man/mkfile
@@ -24,7 +24,7 @@
 				switch($i/$j){
 				case 1/tbl
 					tbl $j
-				case 1/eqn 3/usb 6/auth
+				case 1/eqn 3/usb
 					eqn $j
 				case 1/pic
 					pic $j
@@ -86,7 +86,7 @@
 					switch($i/$j){
 					case 1/tbl
 						tbl $j
-					case 1/eqn 3/usb 6/auth
+					case 1/eqn 3/usb
 						eqn $j
 					case 1/pic
 						pic $j
--