From: Kurt Roeckx Date: Fri, 8 Apr 2011 20:56:01 +0000 (+0000) Subject: Revert commit to use the common list of arches, it's listed in a fixed order in the... X-Git-Url: https://git.donarmstrong.com/?p=wannabuild.git;a=commitdiff_plain;h=07ba7718ac2a6d1841ccb957814abcb002a1f387 Revert commit to use the common list of arches, it's listed in a fixed order in the output file. --- diff --git a/bin/wb-graph b/bin/wb-graph index 1ef1b18..cd9c5e4 100755 --- a/bin/wb-graph +++ b/bin/wb-graph @@ -35,9 +35,10 @@ my $date=`date -u "+%m/%d/%Y %T"`; chop($date); print "$date"; -. /org/wanna-build/triggers/common +my @archs = qw(alpha arm hppa hurd-i386 i386 ia64 m68k mips mipsel powerpc s390 amd64 sparc armel kfreebsd-amd64 kfreebsd-i386); +my $arch; -for arch in $ARCHS_unstable; do +foreach $arch (@archs) { my($lastmsg, %n_state, $total, %n_builder, $pu_total); $pu_total = 0; @@ -74,7 +75,7 @@ if ($?) { print ", ".$n_state{"Installed"}.", ".$total; } } -done +} print "\n"; exit 0;