26 lines
906 B
Diff
26 lines
906 B
Diff
diff --git a/files/etc/csh.login b/files/etc/csh.login
|
|
index 9016aae..998d011 100644
|
|
--- a/files/etc/csh.login
|
|
+++ b/files/etc/csh.login
|
|
@@ -110,7 +110,7 @@ set _hpath
|
|
set _spath
|
|
set _upath=( /usr/local/bin /usr/bin /bin )
|
|
if ( "$HOME" != "/" ) then
|
|
- foreach _d (${HOME}/bin/${CPU} ${HOME}/bin)
|
|
+ foreach _d (${HOME}/bin/${CPU} ${HOME}/bin ${HOME}/.local/bin/${CPU} ${HOME}/.local/bin)
|
|
if ( -d $_d ) set _hpath=( $_d $_hpath )
|
|
end
|
|
endif
|
|
diff --git a/files/etc/profile b/files/etc/profile
|
|
index e6c42ce..d392c60 100644
|
|
--- a/files/etc/profile
|
|
+++ b/files/etc/profile
|
|
@@ -163,7 +163,7 @@ ORIG_PATH=$PATH
|
|
if test -z "$PROFILEREAD" ; then
|
|
PATH=/usr/local/bin:/usr/bin:/bin
|
|
if test "$HOME" != "/" ; then
|
|
- for dir in $HOME/bin/$CPU $HOME/bin ; do
|
|
+ for dir in $HOME/bin/$CPU $HOME/bin $HOME/.local/bin/$CPU $HOME/.local/bin ; do
|
|
test -d $dir && PATH=$dir:$PATH
|
|
done
|
|
fi
|