From d9ede42f67a30f31481eae46aa1ee1cae0764af3 Mon Sep 17 00:00:00 2001 From: Jeremy Soller <jeremy@system76.com> Date: Wed, 27 Dec 2017 14:31:53 -0700 Subject: [PATCH] Allow missing llvm-source in rust recipe --- recipes/rust/recipe.sh | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/recipes/rust/recipe.sh b/recipes/rust/recipe.sh index b7410e3a4..aa3383ca7 100644 --- a/recipes/rust/recipe.sh +++ b/recipes/rust/recipe.sh @@ -3,9 +3,9 @@ BRANCH=compile-redox-stage-0 DEPENDS="gcc cargo" LLVM_GIT="https://github.com/redox-os/llvm.git" -LLVM_SOURCE="$(realpath llvm-source)" -LLVM_BUILD="$(realpath llvm-build)" -LLVM_PREFIX="$(realpath llvm-prefix)" +LLVM_SOURCE="$(realpath -m llvm-source)" +LLVM_BUILD="$(realpath -m llvm-build)" +LLVM_PREFIX="$(realpath -m llvm-prefix)" SYSROOT="/usr/$HOST" unset AR AS CC CXX LD NM OBJCOPY OBJDUMP RANLIB READELF STRIP -- GitLab