f4ba2cd223
- Fix hardcoded /var/cache/ccache in profile.d scripts.
17 lines
602 B
Tcsh
17 lines
602 B
Tcsh
# Use ccache by default. Users who don't want that can set the CCACHE_DISABLE
|
|
# environment variable in their personal profile.
|
|
|
|
if ( "$path" !~ *@LIBDIR@/ccache* ) then
|
|
set path = ( @LIBDIR@/ccache $path )
|
|
endif
|
|
|
|
# If @CACHEDIR@ is writable, use a shared cache there. Users who don't
|
|
# want that even if they have that write permission can set the CCACHE_DIR
|
|
# and unset the CCACHE_UMASK environment variables in their personal profile.
|
|
|
|
if ( ! $?CCACHE_DIR && -w @CACHEDIR@ && -d @CACHEDIR@ ) then
|
|
setenv CCACHE_DIR @CACHEDIR@
|
|
setenv CCACHE_UMASK 002
|
|
unsetenv CCACHE_HARDLINK
|
|
endif
|