git: f8643f1098 - main - set GROFF_TMAC_PATH without the non-existing directory '/usr/share/tmac'
Wolfram Schneider <[email protected]>
| Newsgroups | gmane.os.freebsd.devel.cvs.doc |
|---|---|
| Message-ID | <[email protected]> |
The branch main has been updated by wosch: URL: https://cgit.FreeBSD.org/doc/commit/?id=f8643f1098d80848ee29050183514e26673a9777 commit f8643f1098d80848ee29050183514e26673a9777 Author: Wolfram Schneider <[email protected]> AuthorDate: 2025-11-09 16:41:40 +0000 Commit: Wolfram Schneider <[email protected]> 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&manpath=freebsd-release-ports&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 {