diff options
author | 2015-07-21 19:16:46 -0400 | |
---|---|---|
committer | 2015-07-21 19:16:46 -0400 | |
commit | b641f3cf9b535250562e9bfcb11f1e294db84627 (patch) | |
tree | e4993a771ee3481c3a6cd795d0034b7a83fb70ad /doc/install | |
parent | a67b0a02a888ec63ca48329ac2d4e2f49c4ef9fa (diff) |
reorder cabal configure after install of dependencies
can't configure w/o all deps installed
Diffstat (limited to 'doc/install')
-rw-r--r-- | doc/install/fromsource.mdwn | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/doc/install/fromsource.mdwn b/doc/install/fromsource.mdwn index fdb7823fc..1c0bc06d7 100644 --- a/doc/install/fromsource.mdwn +++ b/doc/install/fromsource.mdwn @@ -48,8 +48,8 @@ which is a more stable and consistent version of the Hackage repository. Inside the source tree, run: - cabal configure -f"-assistant -webapp -webdav -pairing -xmpp -dns" cabal install -j -f"-assistant -webapp -webdav -pairing -xmpp -dns" --only-dependencies + cabal configure -f"-assistant -webapp -webdav -pairing -xmpp -dns" cabal build -j PATH=$HOME/bin:$PATH cabal install --bindir=$HOME/bin @@ -65,8 +65,8 @@ Using [Stackage](http://www.stackage.org/) is again a good idea here! Once the C libraries are installed, run inside the source tree: - cabal configure cabal install -j --only-dependencies + cabal configure cabal build -j PATH=$HOME/bin:$PATH cabal install --bindir=$HOME/bin |