blob: bcd06f0583ec7e749f342d4a1ccaf14c81d7ab1b (
plain)
1
2
3
4
5
6
7
|
#!/bin/csh
# Only add the icecream directory to the PATH if we see that iceccd is
# supposed to be running on this machine:
if ( -x /etc/rc.d/rc.iceccd ) then
setenv PATH /usr/libexec/icecc/bin:${PATH}
endif
|