From 66c8f9ff3c8fbb9d35ee5cd86481cc323cf93361 Mon Sep 17 00:00:00 2001 From: Eryn Wells Date: Thu, 11 Aug 2011 12:00:09 -0700 Subject: [PATCH] Create PATH manually instead of relying on system PATH generation --- profile | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/profile b/profile index 47fb47b..6f1848f 100644 --- a/profile +++ b/profile @@ -3,6 +3,7 @@ # Eryn Wells # Environment settings +PATH=/usr/local/bin:/usr/bin:/bin:/usr/local/sbin:/usr/sbin:/sbin:/usr/X11/bin PAGER="less" MANPAGER="less" EDITOR="vim" @@ -23,7 +24,6 @@ case $arch in ;; Darwin) - PATH=/opt/local/bin:$PATH # MacPorts alias indent='gnuindent' ;; esac @@ -33,6 +33,7 @@ esac export NETHACKOPTIONS="color" [ -e $HOME/.profile-local ] && source $HOME/.profile-local +[ -d $HOME/.local/bin ] && PATH=$HOME/.local/bin:$PATH [ -d $HOME/bin ] && PATH=$HOME/bin:$PATH # Start SSH agent for password-less logins