summaryrefslogtreecommitdiff
path: root/Makefile
diff options
context:
space:
mode:
authorIgor Pashev <pashev.igor@gmail.com>2019-12-02 08:23:42 +0100
committerIgor Pashev <pashev.igor@gmail.com>2019-12-02 08:23:42 +0100
commitb75204458f6c927dd5127fb7a84c2b6914652c05 (patch)
treeafd487f0a7092fa66a5dec42bc9db5466edd15a0 /Makefile
parentc7902c183e5add19d2dfa5ef8b362d05982605de (diff)
downloadmrust-master.tar.gz
Add a patch for DysonHEADmaster
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile5
1 files changed, 3 insertions, 2 deletions
diff --git a/Makefile b/Makefile
index d21b11c8..c45b5c65 100644
--- a/Makefile
+++ b/Makefile
@@ -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