diff options
| author | Huon Wilson <dbau.pp+github@gmail.com> | 2014-04-04 21:56:22 +1100 |
|---|---|---|
| committer | Alex Crichton <alex@alexcrichton.com> | 2014-04-04 13:23:00 -0700 |
| commit | b236f45e35554f89d490e7b5634354cde15d0126 (patch) | |
| tree | 8f7be78397372f987b5c21be25b8ff25fa19e542 | |
| parent | 73b0186290d41e228e61b343c4b4a90570b580e9 (diff) | |
Add stdlib docs to the Linux binary tarball.
These are not installed anywhere, but are included under `./doc` for those who want an offline copy with their nightlies. This increases the size of the (compressed) tarball from 76 to 83 MB.
| -rw-r--r-- | mk/dist.mk | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/mk/dist.mk b/mk/dist.mk index 8679aeed04f..43af4f90140 100644 --- a/mk/dist.mk +++ b/mk/dist.mk @@ -215,7 +215,7 @@ dist-install-dir-$(1): PREPARE_BIN_CMD=$(DEFAULT_PREPARE_BIN_CMD) dist-install-dir-$(1): PREPARE_LIB_CMD=$(DEFAULT_PREPARE_LIB_CMD) dist-install-dir-$(1): PREPARE_MAN_CMD=$(DEFAULT_PREPARE_MAN_CMD) dist-install-dir-$(1): PREPARE_CLEAN=true -dist-install-dir-$(1): prepare-base-dir-$(1) +dist-install-dir-$(1): prepare-base-dir-$(1) docs compiler-docs $$(Q)(cd $$(PREPARE_DEST_DIR)/ && find . -type f | sed 's/^\.\///') \ > tmp/dist/manifest-$(1).in $$(Q)mv tmp/dist/manifest-$(1).in $$(PREPARE_DEST_DIR)/$$(CFG_LIBDIR_RELATIVE)/rustlib/manifest.in @@ -224,6 +224,7 @@ dist-install-dir-$(1): prepare-base-dir-$(1) $$(Q)$$(PREPARE_MAN_CMD) $$(S)LICENSE-APACHE $$(PREPARE_DEST_DIR) $$(Q)$$(PREPARE_MAN_CMD) $$(S)LICENSE-MIT $$(PREPARE_DEST_DIR) $$(Q)$$(PREPARE_MAN_CMD) $$(S)README.md $$(PREPARE_DEST_DIR) + $$(Q)cp -r doc $$(PREPARE_DEST_DIR) $$(Q)$$(PREPARE_BIN_CMD) $$(S)src/etc/install.sh $$(PREPARE_DEST_DIR) dist/$$(PKG_NAME)-$(1).tar.gz: dist-install-dir-$(1) |
