Changeset 56

Show
Ignore:
Timestamp:
05/04/05 10:49:47 (4 years ago)
Author:
conrad
Message:

add ccache wrappers to .profile, and clean up PATH

Files:

Legend:

Unmodified
Added
Removed
Modified
Copied
Moved
  • home/.profile

    r53 r56  
    2323#alias l='ls -CF' 
    2424 
     25# Ensure the default editor is sane 
    2526export EDITOR=vi 
    2627 
    27 export PATH=/usr/local/bin:$PATH 
     28# add /usr/local/bin to PATH 
     29PATH=/usr/local/bin:$PATH 
     30 
     31# add ccache wrappers to PATH if they are installed 
     32if [ -d /usr/lib/ccache ] ; then 
     33    PATH=/usr/lib/ccache:$PATH 
     34fi 
    2835 
    2936# set PATH so it includes user's private bin if it exists 
     
    3239fi 
    3340 
     41export PATH 
     42 
    3443# do the same with MANPATH 
    3544if [ -d ~/man ]; then