Navigation Menu

Skip to content

Commit

Permalink
apt: generate log file for non parallel build
Browse files Browse the repository at this point in the history
  • Loading branch information
kenhys committed Jun 27, 2012
1 parent 7a86769 commit 52ab6b7
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion packages/apt/build-in-chroot.sh
Expand Up @@ -122,7 +122,9 @@ for architecture in $ARCHITECTURES; do
if test "$parallel" = "yes"; then
build $architecture $code_name &
else
build $architecture $code_name
mkdir -p tmp
build_log=tmp/build-$code_name-$architecture.log
build $architecture $code_name 2>&1 | tee $build_log
fi;
done;
done
Expand Down

0 comments on commit 52ab6b7

Please sign in to comment.