summaryrefslogtreecommitdiffstats
path: root/bash
diff options
context:
space:
mode:
authorDavid Robillard <d@drobilla.net>2020-11-10 17:58:03 +0100
committerDavid Robillard <d@drobilla.net>2020-11-10 17:58:19 +0100
commit46512193f70f93ae5d3dc3ab16072718d9d6d35d (patch)
treee306366d90ef2bab51e556056f85d09312fb8221 /bash
parent946496a44167289e924d925aacb2102e33862fe6 (diff)
downloaddotfiles-46512193f70f93ae5d3dc3ab16072718d9d6d35d.tar.gz
dotfiles-46512193f70f93ae5d3dc3ab16072718d9d6d35d.tar.bz2
dotfiles-46512193f70f93ae5d3dc3ab16072718d9d6d35d.zip
Add ccache bin directory to path
Diffstat (limited to 'bash')
-rw-r--r--bash/.bashrc4
1 files changed, 4 insertions, 0 deletions
diff --git a/bash/.bashrc b/bash/.bashrc
index 9b72937..5e71926 100644
--- a/bash/.bashrc
+++ b/bash/.bashrc
@@ -136,3 +136,7 @@ fi
if [ -d "$HOME/bin" ] ; then
PATH="$HOME/bin:$HOME/.local/bin:$PATH"
fi
+
+if [ -d "/usr/lib/ccache/bin" ] ; then
+ PATH="/usr/lib/ccache/bin:$PATH"
+fi