diff options
author | Thomas Schwinge <thomas@codesourcery.com> | 2012-12-15 23:31:35 +0100 |
---|---|---|
committer | Thomas Schwinge <thomas@codesourcery.com> | 2012-12-15 23:31:35 +0100 |
commit | 857158d0abdbd9c3be942dda05b33a97115cff54 (patch) | |
tree | c639c369c98f2054e3c2fc6bf0164ad5464de5f0 /process | |
parent | 568e51125eea2b68cf4bfa9ce0bef99af9bea5de (diff) |
binutils: 81a734055750a1de753adfd86f7ae9e1d72575e4 (2012-12-15)
Diffstat (limited to 'process')
-rwxr-xr-x | process | 19 |
1 files changed, 11 insertions, 8 deletions
@@ -8,7 +8,12 @@ set -e -x project=$1 build_suffix=.build case $project in - binutils | gcc) + binutils) + branch=tschwinge/Paul_Desmond + linux_host=kepler.SCHWINGE + hurd_host=coulomb.SCHWINGE + ;; + gcc) branch=hurd/master linux_host=kepler.SCHWINGE hurd_host=coulomb.SCHWINGE @@ -102,7 +107,7 @@ case $project:$action in : "${project_base:?}" # Log files. case $project:$step in - binutils:build | binutils:install \ + binutils:build | binutils:install | binutils:test \ | gcc:build | gcc:install | gcc:test \ | gdb:build | gdb:install | gdb:test \ | glibc:build | glibc:install | glibc:test) @@ -113,9 +118,6 @@ case $project:$action in | sed -e "s%\('"$mount"'\)\?${PWD}%[...]%g"' \ > toolchain/logs/"$project"/"$host"/log_"$step" ;; - binutils:test) - : - ;; *) echo >&2 "Internal error." exit 1 @@ -192,7 +194,7 @@ case $project:$action in : "${linux_host:?}" : "${hurd_host:?}" case $project:$step in - binutils:build | binutils:install \ + binutils:build | binutils:install | binutils:test \ | gcc:build | gcc:install | gcc:test \ | gdb:build | gdb:install | gdb:test) sed \ @@ -216,8 +218,9 @@ case $project:$action in toolchain/logs/"$project"/"$hurd_host"/log_"$step"_ [ "$r" = 0 ] || [ "$r" = 1 ] ;; - binutils:test) - : + *) + echo >&2 "Internal error." + exit 1 ;; esac case $project:$step in |