From: Alexander Barton Date: Fri, 16 Oct 2009 10:44:43 +0000 (+0200) Subject: Add /Developer/usr/bin as optional PATH component X-Git-Url: https://arthur.barton.de/gitweb/?p=ConfigScripts.git;a=commitdiff_plain;h=439af76a7fb6dcd15c32bce794c9b3a178e348fd Add /Developer/usr/bin as optional PATH component --- diff --git a/sys/profile b/sys/profile index 08307cb..30e0df1 100644 --- a/sys/profile +++ b/sys/profile @@ -30,7 +30,7 @@ else fi # prepend optional directories to PATH ... path="" -for d in /usr/pkg/bin /opt/*/bin; do +for d in /Developer/usr/bin /usr/pkg/bin /opt/*/bin; do [ -d "$d" -o -h "$d" ] && path="$path$d:" done [ -n "$path" ] && PATH="$path$PATH"