diff options
| author | Corey Farwell <coreyf@rwell.org> | 2017-02-05 09:14:54 -0500 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2017-02-05 09:14:54 -0500 |
| commit | 403ca55a85ba5b8c868f0ae5fcd12067529d112a (patch) | |
| tree | 8dc41b3020e84fb44eccfd6408bd419f350217db | |
| parent | e06fa7cf07a4b6f7727dbb4f82f97f0ee0450f80 (diff) | |
| parent | 681bc5c66cf6f99f7a95ebd5ed38cdd3fb3c4245 (diff) | |
| download | rust-403ca55a85ba5b8c868f0ae5fcd12067529d112a.tar.gz rust-403ca55a85ba5b8c868f0ae5fcd12067529d112a.zip | |
Rollup merge of #39478 - alexcrichton:add-xpy, r=japaric
rustbuild: Add x.py to source tarballs We should be sure to add our build system entry point! Closes #39476
| -rw-r--r-- | src/bootstrap/dist.rs | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/bootstrap/dist.rs b/src/bootstrap/dist.rs index 5fac142f777..9327cc0cf7f 100644 --- a/src/bootstrap/dist.rs +++ b/src/bootstrap/dist.rs @@ -381,7 +381,8 @@ pub fn rust_src(build: &Build) { "README.md", "RELEASES.md", "configure", - "Makefile.in" + "Makefile.in", + "x.py", ]; let src_dirs = [ "man", |
