From e2353a5b631dff4167c598380538d08c1779a0c8 Mon Sep 17 00:00:00 2001 From: "Benjamin R. Haskell" Date: Tue, 29 Jul 2014 01:13:30 -0400 Subject: [PATCH] Update README with new build instructions - Remove outdated `git submodule` instructions - Add new `./configure` build step --- README.md | 13 +++---------- 1 file changed, 3 insertions(+), 10 deletions(-) diff --git a/README.md b/README.md index fe097f865..d7b63978d 100644 --- a/README.md +++ b/README.md @@ -22,16 +22,9 @@ The current nightlies available are: ## Compiling cargo -You'll want to clone cargo using --recursive on git, to clone in its submodule -dependencies. -``` -$ git clone --recursive https://github.com/rust-lang/cargo -``` -or -``` -$ git submodule init -$ git submodule update -``` +Run `./configure` to create a Makefile. (`./configure --help` will show common +options.) + Then it's as simple as ```make``` followed by ```make install``` and you're ready to go.