From: Brian West Date: Sun, 4 Oct 2015 17:38:04 +0000 (-0500) Subject: install ccache into path if it exists X-Git-Tag: v1.6.3~1^2~38 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=5762955ff9265bdfbc4d6228ccfed0f698d34539;p=thirdparty%2Ffreeswitch.git install ccache into path if it exists --- diff --git a/support-d/.bashrc b/support-d/.bashrc index 4b21b517da..4b917c3b5c 100644 --- a/support-d/.bashrc +++ b/support-d/.bashrc @@ -5,6 +5,9 @@ export UNAME=`uname -s` if [ "`id -u`" = "0" ]; then if [ "${UNAME}" = "Linux" ]; then + if [ -d /usr/lib/ccache ]; then + export PATH="/usr/lib/ccache:$PATH" + fi export PATH="$PATH:/opt/bin:/usr/local/bin:/usr/local/sbin:/usr/local/freeswitch/bin" if [ -d /usr/src/freeswitch.git/support-d/utils ]; then export PATH="/usr/src/freeswitch.git/support-d/utils:$PATH"