One does not simply `make` Cargo

README fix with correct build instructions for building from source.
This commit is contained in:
Steve Klabnik 2014-11-17 15:55:54 -05:00
parent a3fd7bd630
commit 78f20cabfc
2 changed files with 3 additions and 1 deletions

1
.gitignore vendored
View File

@ -4,3 +4,4 @@
/Makefile
/config.mk
src/doc/build
rustc

View File

@ -43,7 +43,8 @@ Cargo can then be compiled like many other standard unix-like projects:
```sh
git clone https://github.com/rust-lang/cargo
cd cargo
./configure
./.travis.install.deps.sh
./configure --local-rust-root=`pwd`/rustc
make
make install
```