scripts; Improve firmware Makefile; Fix messages in hhl.staticlib.mkodin
parent
2f9598382b
commit
10afb1cd9b
@ -1,8 +1,8 @@
|
||||
# Setup for /bin/ls and /bin/grep to support color, the alias is in /etc/bashrc.
|
||||
if [ -f "/etc/dircolors" ] ; then
|
||||
eval $(dircolors -b /etc/dircolors)
|
||||
if [ -f "/etc/dircolors" ]
|
||||
then eval $(dircolors -b /etc/dircolors)
|
||||
fi
|
||||
|
||||
if [ -f "$HOME/.dircolors" ] ; then
|
||||
eval $(dircolors -b $HOME/.dircolors)
|
||||
if [ -f "$HOME/.dircolors" ]
|
||||
then eval $(dircolors -b $HOME/.dircolors)
|
||||
fi
|
||||
|
@ -1,14 +1,12 @@
|
||||
if [ $UID = 0 ]
|
||||
then PATH=/usr/bin:/usr/sbin:/bin:/sbin
|
||||
if [ -d /usr/local/bin ] ; then PATH=/usr/local/bin:/usr/local/sbin:${PATH} ; fi
|
||||
then PATH=/usr/bin:/usr/sbin:/bin:/sbin
|
||||
if [ -d /usr/local/bin ] ; then PATH=/usr/local/bin:/usr/local/sbin:${PATH} ; fi
|
||||
else
|
||||
PATH=/usr/bin:/bin
|
||||
if [ -d /usr/local/bin ] ; then PATH=/usr/local/bin:${PATH} ; fi
|
||||
fi
|
||||
if [ -d ${HOME}/bin ]
|
||||
then PATH=${HOME}/bin:PATH
|
||||
if [ -d /usr/local/bin ] ; then PATH=/usr/local/bin:${PATH} ; fi
|
||||
fi
|
||||
if [ -d ${HOME}/bin ] ; then PATH=${HOME}/bin:${PATH} ; fi
|
||||
export PATH
|
||||
for script in /etc/zshenv.d/*.zsh
|
||||
do source ${script}
|
||||
do source ${script}
|
||||
done
|
||||
|
@ -1,8 +1,8 @@
|
||||
# Setup for /bin/ls and /bin/grep to support color, the alias is in /etc/bashrc.
|
||||
if [ -f "/etc/dircolors" ] ; then
|
||||
eval $(dircolors -b /etc/dircolors)
|
||||
if [ -f "/etc/dircolors" ]
|
||||
then eval $(dircolors -b /etc/dircolors)
|
||||
fi
|
||||
|
||||
if [ -f "$HOME/.dircolors" ] ; then
|
||||
eval $(dircolors -b $HOME/.dircolors)
|
||||
if [ -f "$HOME/.dircolors" ]
|
||||
then eval $(dircolors -b $HOME/.dircolors)
|
||||
fi
|
||||
|
Loading…
Reference in new issue