Please read this before reporting a bug:
https://wiki.archlinux.org/title/Bug_reporting_guidelines
Do NOT report bugs when a package is just outdated, or it is in the AUR. Use the 'flag out of date' link on the package page, or the Mailing List.
REPEAT: Do NOT report bugs for outdated packages!
https://wiki.archlinux.org/title/Bug_reporting_guidelines
Do NOT report bugs when a package is just outdated, or it is in the AUR. Use the 'flag out of date' link on the package page, or the Mailing List.
REPEAT: Do NOT report bugs for outdated packages!
FS#2018 - tcsh: /etc/csh.cshrc doesn't set $MANPATH
Attached to Project:
Arch Linux
Opened by Eric Belanger (Snowman) - Friday, 14 January 2005, 02:18 GMT
Last edited by Tobias Powalowski (tpowa) - Friday, 14 January 2005, 07:04 GMT
Opened by Eric Belanger (Snowman) - Friday, 14 January 2005, 02:18 GMT
Last edited by Tobias Powalowski (tpowa) - Friday, 14 January 2005, 07:04 GMT
|
DetailsThe variable $MANPATH doesn't get defined by the new tcsh scripts. Adding:
if ( ! $?MANPATH ) then setenv MANPATH /usr/man:/usr/X11R6/man:/usr/local/man else setenv MANPATH /usr/man:/usr/X11R6/man:/usr/local/man$MANPATH endif to /etc/csh.cshrc fix it. Thanks, Eric |
This task depends upon
the line
setenv MANPATH /usr/man:/usr/X11R6/man:/usr/local/man$MANPATH
should be
setenv MANPATH /usr/man:/usr/X11R6/man:/usr/local/man:$MANPATH
Sorry about that.