On 21/01/2010 00:28, Patrick Horgan wrote:
It's your PATH. The PATH is how unix/linux finds things. If you type:
echo $PATH
you'll see that either ~/bin, or /home/fede/bin, comes before /usr/bin.
They're searched in the order they occur in your PATH. If you'd like it
to be different, find the file that sets it when you log in. It will be
something like .bashrc or .bash_profile or .profile. Edit that file and
change the order of things, (or add too), your PATH.
Thanks Patrick,
now I see.
So it's just a "unix setting".
At first, I thaught that installing lilypond with 'sh
lilypond-packageXXX.sh' changed the settings.
Instead, the lilypond packages rely on this unix default setting.
These lines in ~/.profile explain everything:
# set PATH so it includes user's private bin if it exists
if [ -d "$HOME/bin" ] ; then
PATH="$HOME/bin:$PATH"
fi
_______________________________________________
lilypond-user mailing list
lilypond-user@gnu.org
http://lists.gnu.org/mailman/listinfo/lilypond-user