From efd52699849455579409fcabdad9f3f1d933b0c9 Mon Sep 17 00:00:00 2001 From: John Hodge <tpg@ucc.asn.au> Date: Sat, 22 Dec 2018 13:26:09 +0800 Subject: [PATCH] Fix bad paths in top-level Makefile --- Makefile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Makefile b/Makefile index 900ba3c5..d5095cfe 100644 --- a/Makefile +++ b/Makefile @@ -25,8 +25,8 @@ UPDATE: #@make -C Kernel/ UPDATE --no-print-directory #@make -C Kernel/ ../libcore/lib.rs --no-print-directory # - @mkdir -p ../.prefix - curl https://static.rust-lang.org/rustup/rustup-init.sh -sSf | RUSTUP_HOME=$(abspath ../.prefix) CARGO_HOME=$(abspath ../.prefix) sh -s -- --default-toolchain none --no-modify-path -y + @mkdir -p .prefix + curl https://static.rust-lang.org/rustup/rustup-init.sh -sSf | RUSTUP_HOME=$(abspath .prefix) CARGO_HOME=$(abspath .prefix) sh -s -- --default-toolchain none --no-modify-path -y $(call fn_rustcmd,rustup) update $(RUSTUP_VER) $(call fn_rustcmd,rustup) default $(RUSTUP_VER) #$(call fn_rustcmd,rustup) component add rust-src -- GitLab