# HG changeset patch # User Rob Landley # Date 1280216133 18000 # Node ID c5ebf1e353c7615436739bd5426dc81fc4adbdee # Parent 0cc86c6680ac608ccc4e47b4ebf372552a8cb849 Apparently this never quite got updated for commit 1116. diff -r 0cc86c6680ac -r c5ebf1e353c7 more/buildall.sh --- a/more/buildall.sh Tue Jul 27 01:40:50 2010 -0500 +++ b/more/buildall.sh Tue Jul 27 02:35:33 2010 -0500 @@ -1,11 +1,11 @@ #!/bin/bash -# Build every target architecture, creating build-$ARCH.txt log files. +# Build every target architecture, saving log files to build/log. # If $FORK is set, build them in parallel. . sources/functions.sh || exit 1 -[ -z "$STATIC_CC_HOST" ] && export STATIC_CC_HOST=i686 +[ -z "$CROSS_HOST_ARCH" ] && export CROSS_HOST_ARCH=i686 trap "killtree $$" EXIT @@ -22,7 +22,7 @@ mkdir -p build/logs && (EXTRACT_ALL=1 ./download.sh 2>&1 && ./host-tools.sh 2>&1 && - ./simple-cross-compiler.sh 2>&1 "$STATIC_CC_HOST" || + ./simple-cross-compiler.sh 2>&1 "$CROSS_HOST_ARCH" || dienow) | tee build/logs/build-host-cc.txt | maybe_quiet cp packages/MANIFEST build || dienow