From 20aa264072f21d6633a3277e87fe37b15495b314 Mon Sep 17 00:00:00 2001 From: Rob Landley Date: Sat, 7 Sep 2019 02:58:35 -0500 Subject: Don't have cross.sh bother with "output" directory, make root uses different subdir name now anyway, and making toybox isn't in a subdir. --- scripts/cross.sh | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) (limited to 'scripts') diff --git a/scripts/cross.sh b/scripts/cross.sh index 2e0f795e..34fef0f7 100755 --- a/scripts/cross.sh +++ b/scripts/cross.sh @@ -32,11 +32,10 @@ if [ "$X" == all ] then for TARGET in $(list) do - mkdir -p output/$TARGET { export TARGET - "$0" $TARGET "$@" 2>&1 || mv output/$TARGET{,.failed} - } | tee output/$TARGET/log.txt + "$0" $TARGET "$@" 2>&1 || mv cross-log-$TARGET.{txt,failed} + } | tee cross-log-$TARGET.txt done exit -- cgit v1.2.3