summaryrefslogtreecommitdiffstats
path: root/src/executor.rs
diff options
context:
space:
mode:
authorMatthias Schiffer <mschiffer@universe-factory.net>2021-09-26 10:24:20 +0200
committerMatthias Schiffer <mschiffer@universe-factory.net>2021-09-26 14:18:06 +0200
commit25f64d378345405b0d915a3b549960fbcd0fe341 (patch)
treedb6fc496df02fb0069575381622731a84264ae00 /src/executor.rs
parent51f89f45a03d7c38b51631bd00f06616502e2798 (diff)
downloadrebel-25f64d378345405b0d915a3b549960fbcd0fe341.tar
rebel-25f64d378345405b0d915a3b549960fbcd0fe341.zip
paths: move sysroot to /opt/toolchain/sysroot
Prepare for removing the separate sysroot mount.
Diffstat (limited to 'src/executor.rs')
-rw-r--r--src/executor.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/executor.rs b/src/executor.rs
index b53b519..0b2e1bd 100644
--- a/src/executor.rs
+++ b/src/executor.rs
@@ -15,8 +15,8 @@ use crate::{
const BASE_ARGS: &[(&str, &str)] = &[
("workdir", "/build/work"),
("dldir", "/build/downloads"),
- ("sysroot", "/build/sysroot"),
("destdir", "/build/dest"),
+ ("sysroot", "/opt/toolchain/sysroot"),
];
fn input_hash(task: &runner::TaskInput) -> InputHash {