include --bindir in all cabal install examples

This commit is contained in:
Joey Hess 2011-09-25 14:26:05 -04:00
parent 6dc23b889e
commit b203a68cb7
3 changed files with 3 additions and 3 deletions

View file

@ -8,7 +8,7 @@
## Using cabal
As a haskell package, git-annex can be built using cabal. For example:
As a haskell package, git-annex can be installed using cabal. For example:
cabal install git-annex --bindir=$HOME/bin

View file

@ -3,5 +3,5 @@ Installation recipe for Fedora 14.
<pre>
sudo yum install ghc cabal-install
sudo cabal update
sudo cabal install git-annex
cabal install git-annex --bindir=$HOME/bin
</pre>

View file

@ -9,7 +9,7 @@ sudo ln -s /opt/local/include/pcre.h /usr/include/pcre.h # This is hack that al
export PATH=$PATH:/opt/local/libexec/gnubin
sudo cabal update
sudo cabal install git-annex
cabal install git-annex --bindir=$HOME/bin
</pre>
Originally posted by Jon at <https://gist.github.com/671785> --[[Joey]], modified by [[kristianrumberg]]