diff options
author | hubertf <hubertf> | 2001-10-15 23:18:51 +0000 |
---|---|---|
committer | hubertf <hubertf> | 2001-10-15 23:18:51 +0000 |
commit | 90b20a18a786bb9f4eb3bc289abe07071b38b9ed (patch) | |
tree | 5aa4e7cdc75b4f9940383603fc9ad9fc2788f847 /mk | |
parent | 7fa4913bcbecaa9a9b8f24a8ed2e6f6e172977a8 (diff) | |
download | pkgsrc-90b20a18a786bb9f4eb3bc289abe07071b38b9ed.tar.gz |
Narrow doen the "Pkgs broken by" column by renaming it to "Breaks"
This gives this a bit of a chance to fit into 80 columns.
Diffstat (limited to 'mk')
-rw-r--r-- | mk/bulk/post-build | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/mk/bulk/post-build b/mk/bulk/post-build index 8d120fb7b4c..b06e080a035 100644 --- a/mk/bulk/post-build +++ b/mk/bulk/post-build @@ -1,5 +1,5 @@ #!/usr/pkg/bin/perl -# $NetBSD: post-build,v 1.14 2001/10/15 23:00:10 hubertf Exp $ +# $NetBSD: post-build,v 1.15 2001/10/15 23:18:51 hubertf Exp $ # # Collect stuff after a pkg bulk build # @@ -62,7 +62,7 @@ if ($verbose) { print "*** NetBSD $osrev/$arch\n"; print "*** Result of bulk pkgsrc build as of $date:\n"; print "\n"; - printf ("%-23s State \tPkgs broken by\t(last modified, maintainer)\n","Pkg"); + printf ("%-23s State \tBreaks\t(last modified, maintainer)\n","Pkg"); } system("mkdir -p ${FTP}"); @@ -157,11 +157,11 @@ while (<BF>) { if ($nerrors != 0) { if ($nbrokenby > 0){ - printf("%-23s $state\t%-13d\t($who, $maintainer)\n", "$pkg:",$nbrokenby) + printf("%-23s $state\t%-5d\t($who, $maintainer)\n", "$pkg:",$nbrokenby) if $verbose; } else { - printf("%-23s $state\t%-13s\t($who, $maintainer)\n", "$pkg:","") + printf("%-23s $state\t%-5s\t($who, $maintainer)\n", "$pkg:","") if $verbose; } |