From 99cdabab00bd0c634612418651a6c8c8cae8ef5b Mon Sep 17 00:00:00 2001 From: Luca Bruno Date: Sat, 8 Feb 2014 14:07:02 +0100 Subject: [PATCH 1/2] make: update dist target for renamed files src/README.txt has been renamed in a30d61b05a, make dist is thus failing as unable to find it. This commit makes the dist target working again. Signed-off-by: Luca Bruno --- mk/dist.mk | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/mk/dist.mk b/mk/dist.mk index 656811bab4d..a625e2f0481 100644 --- a/mk/dist.mk +++ b/mk/dist.mk @@ -26,7 +26,7 @@ PKG_FILES := \ $(S)man \ $(S)doc \ $(addprefix $(S)src/, \ - README.txt \ + README.md \ driver \ librustc \ compiletest \ From 51b74c41ff6178d698e907724f3a231e69f95839 Mon Sep 17 00:00:00 2001 From: Luca Bruno Date: Sat, 8 Feb 2014 14:37:48 +0100 Subject: [PATCH 2/2] make: update dist target after libextra split libextra is currently being split into several crates. This commit adds them all to the dist target in order to have them in the final tarballs. Signed-off-by: Luca Bruno --- mk/dist.mk | 11 ++--------- 1 file changed, 2 insertions(+), 9 deletions(-) diff --git a/mk/dist.mk b/mk/dist.mk index a625e2f0481..6d4e4401eaf 100644 --- a/mk/dist.mk +++ b/mk/dist.mk @@ -27,18 +27,11 @@ PKG_FILES := \ $(S)doc \ $(addprefix $(S)src/, \ README.md \ - driver \ - librustc \ compiletest \ + driver \ etc \ - libextra \ - libstd \ - libsyntax \ - librustuv \ - libgreen \ - libnative \ + $(foreach crate,$(CRATES),lib$(crate)) \ rt \ - librustdoc \ rustllvm \ snapshots.txt \ test) \