summaryrefslogtreecommitdiff
path: root/.config/login.d/10_ccache.sh
diff options
context:
space:
mode:
authorLuke Shumaker <lukeshu@lukeshu.com>2017-11-08 14:02:33 -0500
committerLuke Shumaker <lukeshu@lukeshu.com>2017-11-08 14:02:33 -0500
commitd3341d160f3c0aa747543bc8dfa15ed38e4cd2c9 (patch)
tree618eb37e057ff758fe579393f5db2fe27f7c7365 /.config/login.d/10_ccache.sh
parent62f799773273be2811ef699274f97467a2ae2c1a (diff)
login: enable ccache by default
Diffstat (limited to '.config/login.d/10_ccache.sh')
-rw-r--r--.config/login.d/10_ccache.sh4
1 files changed, 4 insertions, 0 deletions
diff --git a/.config/login.d/10_ccache.sh b/.config/login.d/10_ccache.sh
new file mode 100644
index 0000000..b9721c0
--- /dev/null
+++ b/.config/login.d/10_ccache.sh
@@ -0,0 +1,4 @@
+#!/hint/sh
+if test -d /usr/lib/ccache/bin; then
+ PATH="/usr/lib/ccache/bin:$PATH"
+fi