summaryrefslogtreecommitdiff
path: root/doc/install
diff options
context:
space:
mode:
authorGravatar https://www.google.com/accounts/o8/id?id=AItOawmUJBh1lYmvfCCiGr3yrdx-QhuLCSRnU5c <Justin@web>2015-03-28 19:28:28 +0000
committerGravatar admin <admin@branchable.com>2015-03-28 19:28:28 +0000
commit7d905b53f9e36b97816fe0b8ff3f83ba7e87f552 (patch)
treebd9af1471dbe38697695f2f5c3701008be47ae41 /doc/install
parentb47e18b63e3c2065d28c514c9139561285989fe6 (diff)
Pass -j to cabal install and cabal build; presumably we all have more than one core to spare.
Diffstat (limited to 'doc/install')
-rw-r--r--doc/install/fromsource.mdwn8
1 files changed, 4 insertions, 4 deletions
diff --git a/doc/install/fromsource.mdwn b/doc/install/fromsource.mdwn
index 733d736d0..3f2987b67 100644
--- a/doc/install/fromsource.mdwn
+++ b/doc/install/fromsource.mdwn
@@ -43,8 +43,8 @@ git-annex, but it does not include the assistant or webapp.
Inside the source tree, run:
cabal configure -f"-assistant -webapp -webdav -pairing -xmpp -dns"
- cabal install -f"-assistant -webapp -webdav -pairing -xmpp -dns" --only-dependencies
- cabal build
+ cabal install -j -f"-assistant -webapp -webdav -pairing -xmpp -dns" --only-dependencies
+ cabal build -j
PATH=$HOME/bin:$PATH
cabal install --bindir=$HOME/bin
@@ -62,8 +62,8 @@ your OS is beyond the scope of this page.
Once the C libraries are installed, run inside the source tree:
cabal configure
- cabal install --only-dependencies
- cabal build
+ cabal install -j --only-dependencies
+ cabal build -j
PATH=$HOME/bin:$PATH
cabal install --bindir=$HOME/bin