summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorJustin Boffemmyer2018-02-21 11:32:18 +0900
committerJustin Boffemmyer2018-02-21 11:32:18 +0900
commitcbf4b615351328cf33f1b4397b03616b1d6e1424 (patch)
treef488939eef503621bc04878fdef0668e08225afe
parentbb10aaafcd9173af88ac42500bc11eec662e09cb (diff)
cauldron: lib.toolchain: correct liberror message
Add the target path to the liberror message that will appear in case of error, rather than assuming the user will understand the path is relative to the target.
-rw-r--r--cauldron/lib/lib.toolchain2
1 files changed, 1 insertions, 1 deletions
diff --git a/cauldron/lib/lib.toolchain b/cauldron/lib/lib.toolchain
index e5ad9cf..5e05549 100644
--- a/cauldron/lib/lib.toolchain
+++ b/cauldron/lib/lib.toolchain
@@ -61,7 +61,7 @@ function cauldron_toolchain_compiler_test() {
# run the generated binary to make sure it was properly compiled
cauldron_chroot "/$comptest"
- liberror_check "execute $comptest" || return $?
+ liberror_check "execute $chroot/$comptest" || return $?
cauldron_chroot_done "$chroot"
liberror_check || return $?