# HG changeset patch # User huston@80426f53-59d1-405d-934b-f07cd76f4a1a # Date 1267580973 0 # Node ID 29dfb30b069cb8fe496ac740c9cae653d3a7baa6 # Parent a93f5d5278f35f22c93452c9dab8a2737bb9f441 Added /usr/X11R6/bin to $PATH (Macs store some stuff there, Linux has it mostly empty and therefore harmless to add). diff -r a93f5d5278f3 -r 29dfb30b069c .bashrc --- a/.bashrc Wed Feb 03 21:26:28 2010 +0000 +++ b/.bashrc Wed Mar 03 01:49:33 2010 +0000 @@ -40,7 +40,7 @@ # Standard-ish paths; some of these may be in place already, but if # they're not they should probably go near the front of the pack. for P in /sbin /usr/sbin /usr/local/bin /usr/local/sbin \ - /opt/local/bin /opt/local/sbin ; do + /opt/local/bin /opt/local/sbin /usr/X11R6/bin; do if [ -d $P ]; then [[ "$PATH" =~ "(^|:)$P($|:)" ]] || \ export PATH=${P}${PATH:+:$PATH}