From 41a4df261e6148ecd294c0489474bddb87c99d4d Mon Sep 17 00:00:00 2001 From: aeyk Date: Fri, 11 Apr 2014 06:11:45 -0400 Subject: [PATCH 1/2] Update README.md --- README.md | 11 +++++++++++ 1 file changed, 11 insertions(+) diff --git a/README.md b/README.md index 4535f0aee7c..b6ae9e05487 100644 --- a/README.md +++ b/README.md @@ -1,3 +1,14 @@ + +## Compiling cargo + +Firstly you will need to get cargo's dependencies, which are just git submodules. + +``` +$ git submodule init +$ git submodule upgrade +``` +Then it's as simple as ```make && make install```. + ## Porcelain ### cargo-compile From 83651db4e6e9c14722f84d394e9f64491ea362d5 Mon Sep 17 00:00:00 2001 From: aeyk Date: Fri, 11 Apr 2014 20:23:20 -0400 Subject: [PATCH 2/2] Update README.md Removed comment about make install as no install directive, added --recursive tag --- README.md | 10 ++++++---- 1 file changed, 6 insertions(+), 4 deletions(-) diff --git a/README.md b/README.md index b6ae9e05487..b5074a87032 100644 --- a/README.md +++ b/README.md @@ -1,13 +1,15 @@ - ## Compiling cargo -Firstly you will need to get cargo's dependencies, which are just git submodules. - +You'll want to clone cargo using --recursive on git, to clone in it's submodule dependencies. +``` +$ git clone --recursive https://github.com/carlhuda/cargo +``` +or ``` $ git submodule init $ git submodule upgrade ``` -Then it's as simple as ```make && make install```. +Then it's as simple as ```make``` and you're ready to go. ## Porcelain