diff options
| author | bors <bors@rust-lang.org> | 2014-02-08 15:17:30 -0800 |
|---|---|---|
| committer | bors <bors@rust-lang.org> | 2014-02-08 15:17:30 -0800 |
| commit | a2290db7971a1e14e4d15316cecaf5c33cc6b0ba (patch) | |
| tree | 5b9cbb638cc948d08bb6463d7fe254761353eb90 | |
| parent | cba7ac5e014e7e225a4e226f15e9c05563d6e4a9 (diff) | |
| parent | 51b74c41ff6178d698e907724f3a231e69f95839 (diff) | |
| download | rust-a2290db7971a1e14e4d15316cecaf5c33cc6b0ba.tar.gz rust-a2290db7971a1e14e4d15316cecaf5c33cc6b0ba.zip | |
auto merge of #12112 : lucab/rust/make-dist, r=alexcrichton
`make dist` or building from a generated tarball is currently not possible due to some files that have been renamed and the ongoing libextra split. This PR fixes all (current) issues in order to build rust from the .tar.gz source alone.
| -rw-r--r-- | mk/dist.mk | 13 |
1 files changed, 3 insertions, 10 deletions
diff --git a/mk/dist.mk b/mk/dist.mk index 656811bab4d..6d4e4401eaf 100644 --- a/mk/dist.mk +++ b/mk/dist.mk @@ -26,19 +26,12 @@ PKG_FILES := \ $(S)man \ $(S)doc \ $(addprefix $(S)src/, \ - README.txt \ - driver \ - librustc \ + README.md \ compiletest \ + driver \ etc \ - libextra \ - libstd \ - libsyntax \ - librustuv \ - libgreen \ - libnative \ + $(foreach crate,$(CRATES),lib$(crate)) \ rt \ - librustdoc \ rustllvm \ snapshots.txt \ test) \ |
