]> git.donarmstrong.com Git - wannabuild.git/commitdiff
Revert commit to use the common list of arches, it's listed in a fixed order in the...
authorKurt Roeckx <kurt@roeckx.be>
Fri, 8 Apr 2011 20:56:01 +0000 (20:56 +0000)
committerKurt Roeckx <kurt@roeckx.be>
Fri, 8 Apr 2011 20:56:01 +0000 (20:56 +0000)
bin/wb-graph

index 1ef1b1808dfb41b5ee83221830434b6f6ab688e5..cd9c5e43ec53f4da2c58b812b7d81cc1ca24a596 100755 (executable)
@@ -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;