diff options
author | Igor Pashev <pashev.igor@gmail.com> | 2019-12-02 08:23:42 +0100 |
---|---|---|
committer | Igor Pashev <pashev.igor@gmail.com> | 2019-12-02 08:23:42 +0100 |
commit | b75204458f6c927dd5127fb7a84c2b6914652c05 (patch) | |
tree | afd487f0a7092fa66a5dec42bc9db5466edd15a0 /Makefile | |
parent | c7902c183e5add19d2dfa5ef8b362d05982605de (diff) | |
download | mrust-master.tar.gz |
Diffstat (limited to 'Makefile')
-rw-r--r-- | Makefile | 5 |
1 files changed, 3 insertions, 2 deletions
@@ -207,9 +207,10 @@ $(RUSTC_SRC_TARBALL): $(RUSTC_SRC_DES) @echo [CURL] $@ @rm -f $@ @curl -sS https://static.rust-lang.org/dist/$@ -o $@ -$(RUSTC_SRC_DL): $(RUSTC_SRC_TARBALL) rustc-$(RUSTC_VERSION)-src.patch +$(RUSTC_SRC_DL): $(RUSTC_SRC_TARBALL) rustc-$(RUSTC_VERSION)-src.patch rustc-$(RUSTC_VERSION).dyson.patch tar -xf $(RUSTC_SRC_TARBALL) - cd $(RUSTCSRC) && patch -p0 < ../rustc-$(RUSTC_VERSION)-src.patch; + cd $(RUSTCSRC) && patch -p0 < ../rustc-$(RUSTC_VERSION)-src.patch \ + && patch -p0 < ../rustc-$(RUSTC_VERSION).dyson.patch cat $(RUSTC_SRC_DES) > $(RUSTC_SRC_DL) endif |