diff options
author | EuAndreh <eu@euandre.org> | 2018-12-02 11:31:41 -0200 |
---|---|---|
committer | EuAndreh <eu@euandre.org> | 2018-12-02 11:31:41 -0200 |
commit | fe87ca5aab38de57dba831bb46b66dc627ca54b5 (patch) | |
tree | 954e7f7bb55c169c15547bb7eacfe7960c75e1b1 | |
parent | mrconfig.ini. (diff) | |
download | dotfiles-fe87ca5aab38de57dba831bb46b66dc627ca54b5.tar.gz dotfiles-fe87ca5aab38de57dba831bb46b66dc627ca54b5.tar.xz |
Prefer custom installed GNU tools over built in ones.
-rw-r--r-- | bash/bashrc.sh | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/bash/bashrc.sh b/bash/bashrc.sh index 8af4dc4..9ddaf6f 100644 --- a/bash/bashrc.sh +++ b/bash/bashrc.sh @@ -33,5 +33,9 @@ source "$(dirname $(readlink $(which autojump)))/../share/autojump/autojump.bash export PATH="$HOME/.perl6/bin:$PATH" +isMac && { + PATH="/usr/local/opt/make/libexec/gnubin:$PATH" +} + export PATH="$HOME/tmp/rakudobrew/bin:$PATH" # export PATH="$HOME/songbooks/cli:$PATH" |