diff options
| author | Alex Crichton <alex@alexcrichton.com> | 2017-01-27 14:48:48 -0800 |
|---|---|---|
| committer | Alex Crichton <alex@alexcrichton.com> | 2017-02-06 08:44:27 -0800 |
| commit | 9ad13c8d0204fb7cd9a3988a5a73f60efce39481 (patch) | |
| tree | 87e1af1e14827aeee467d4ca9076603f89554e30 /src/bootstrap/mk | |
| parent | ffd3070cc9ea6d845865f11d70c220da40720d7e (diff) | |
| download | rust-9ad13c8d0204fb7cd9a3988a5a73f60efce39481.tar.gz rust-9ad13c8d0204fb7cd9a3988a5a73f60efce39481.zip | |
rustbuild: Fix a few locations with makefiles gone
* Add version info to channel.rs as main.mk is no longer available * Update `Makefile.in` used with bootstrap to not try to require `mk/util.mk` * Update the `dist` target to avoid the makefile pieces
Diffstat (limited to 'src/bootstrap/mk')
| -rw-r--r-- | src/bootstrap/mk/Makefile.in | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/bootstrap/mk/Makefile.in b/src/bootstrap/mk/Makefile.in index d6f6a7772c9..536095503e0 100644 --- a/src/bootstrap/mk/Makefile.in +++ b/src/bootstrap/mk/Makefile.in @@ -9,11 +9,12 @@ # except according to those terms. include config.mk -include $(CFG_SRC_DIR)mk/util.mk ifdef VERBOSE +Q := BOOTSTRAP_ARGS := -v else +Q := @ BOOTSTRAP_ARGS := endif |
