fixed manpath issue once again

master
Michael Ochmann 3 years ago
parent 02e7bfe61b
commit 6916427511
  1. 3
      .bashrc

@ -250,8 +250,11 @@ NPM_PACKAGES="${HOME}/.npm-packages"
export PATH="$NPM_PACKAGES/bin:$PATH" export PATH="$NPM_PACKAGES/bin:$PATH"
export EDITOR=vim export EDITOR=vim
if [ command -v manpath ]
then
unset MANPATH # delete if you already modified MANPATH elsewhere in your config unset MANPATH # delete if you already modified MANPATH elsewhere in your config
export MANPATH="$NPM_PACKAGES/share/man:$(manpath)" export MANPATH="$NPM_PACKAGES/share/man:$(manpath)"
fi
export LDFLAGS="-L/usr/local/opt/libffi/lib" export LDFLAGS="-L/usr/local/opt/libffi/lib"
export PKG_CONFIG_PATH="/usr/local/opt/libffi/lib/pkgconfig" export PKG_CONFIG_PATH="/usr/local/opt/libffi/lib/pkgconfig"

Loading…
Cancel
Save