git: f8643f1098 - main - set GROFF_TMAC_PATH without the non-existing directory '/usr/share/tmac'

From: Wolfram Schneider <wosch_at_FreeBSD.org>
Date: Sun, 09 Nov 2025 16:42:28 UTC
The branch main has been updated by wosch:

URL: https://cgit.FreeBSD.org/doc/commit/?id=f8643f1098d80848ee29050183514e26673a9777

commit f8643f1098d80848ee29050183514e26673a9777
Author:     Wolfram Schneider <wosch@FreeBSD.org>
AuthorDate: 2025-11-09 16:41:40 +0000
Commit:     Wolfram Schneider <wosch@FreeBSD.org>
CommitDate: 2025-11-09 16:41:40 +0000

    set GROFF_TMAC_PATH without the non-existing directory '/usr/share/tmac'
---
 website/content/en/cgi/man.cgi | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/website/content/en/cgi/man.cgi b/website/content/en/cgi/man.cgi
index 55d2bc9b13..2bc6f565e7 100755
--- a/website/content/en/cgi/man.cgi
+++ b/website/content/en/cgi/man.cgi
@@ -2054,7 +2054,7 @@ qq{Please try a <a href="$BASE?apropos=1&amp;manpath=freebsd-release-ports&amp;q
 # and then in your cgi script itself set the GROFF_TMAC_PATH as appropriate
 # like:
 #
-# GROFF_TMAC_PATH=$manLocalDir/NetBSD-1.4.2/tmac:/usr/share/tmac/
+# GROFF_TMAC_PATH=$manLocalDir/NetBSD-1.4.2/tmac
 #
 sub groff_path {
     local $manpath = shift;
@@ -2064,7 +2064,7 @@ sub groff_path {
         push( @groff_path, $_ . '/tmac' );
     }
 
-    $ENV{'GROFF_TMAC_PATH'} = join( ':', @groff_path, '/usr/share/tmac' );
+    $ENV{'GROFF_TMAC_PATH'} = join( ':', @groff_path );
 }
 
 sub mlnk {