mirror of
https://github.com/fish-shell/fish-shell
synced 2025-01-14 05:53:59 +00:00
Add mention of uninstalling old fish versions to the INSTALL file. Thanks to Jason Grossman for the suggestion
darcs-hash:20061103141254-ac50b-27f1f4741379bff54298b6c18d289947f66f91cf.gz
This commit is contained in:
parent
8aac7e82c0
commit
80a9fc2fce
1 changed files with 14 additions and 9 deletions
23
INSTALL
23
INSTALL
|
@ -32,17 +32,22 @@ separate build directories or any other fancy configure options.
|
||||||
Simple install procedure
|
Simple install procedure
|
||||||
========================
|
========================
|
||||||
|
|
||||||
If you have downloaded the darcs repository of fish, you need to run
|
Always begin by uninstalling any previous fish versions. This is done
|
||||||
the autoconf command first. Then use the following commands to compile
|
by running the command 'make uninstall' in the source directory of
|
||||||
fish:
|
your previous fish installation.
|
||||||
|
|
||||||
% ./configure
|
Next, if you have downloaded a fresh copy of the darcs repository of
|
||||||
% make # Compile fish
|
fish, you need to run the 'autoconf' command.
|
||||||
% make install # Install fish
|
|
||||||
% echo /usr/local/bin/fish >>/etc/shells # Add fish to list of shells
|
|
||||||
|
|
||||||
If you wish to use fish as your default shell, use the following
|
Then, use following commands to compile fish:
|
||||||
command:
|
|
||||||
|
./configure
|
||||||
|
make # Compile fish
|
||||||
|
make install # Install fish
|
||||||
|
echo /usr/local/bin/fish >>/etc/shells # Add fish to list of shells
|
||||||
|
|
||||||
|
Finally, if you wish to use fish as your default shell, use the
|
||||||
|
following command:
|
||||||
|
|
||||||
% chsh -s /usr/local/bin/fish
|
% chsh -s /usr/local/bin/fish
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue