Fix the setting of $manpath in haskell

This commit is contained in:
Roman A. Taycher 2012-09-20 05:34:22 -07:00 committed by Sorin Ionescu
parent fb4ffd9883
commit 20d7ec0ab8

View file

@ -16,6 +16,6 @@ if [[ "$OSTYPE" == darwin* ]]; then
manpath=($HOME/Library/Haskell/man(/N) $manpath)
else
path=($HOME/.cabal/bin(/N) $path)
manpath=($HOME/.cabal/man(/N) $path)
manpath=($HOME/.cabal/man(/N) $manpath)
fi