From 51b74c41ff6178d698e907724f3a231e69f95839 Mon Sep 17 00:00:00 2001 From: Luca Bruno Date: Sat, 8 Feb 2014 14:37:48 +0100 Subject: [PATCH] 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) \