From 07ba7718ac2a6d1841ccb957814abcb002a1f387 Mon Sep 17 00:00:00 2001 From: Kurt Roeckx Date: Fri, 8 Apr 2011 20:56:01 +0000 Subject: [PATCH] Revert commit to use the common list of arches, it's listed in a fixed order in the output file. --- bin/wb-graph | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) 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; -- 2.39.2