From e16f1c13b6fe3bb142e66e2c4cbc2732c3a78451 Mon Sep 17 00:00:00 2001 From: David Brown Date: Fri, 1 Jul 2016 20:15:53 +0100 Subject: [PATCH] Prettify build report --- src/tools/make/buildall.pl | 12 +++++++----- 1 file changed, 7 insertions(+), 5 deletions(-) diff --git a/src/tools/make/buildall.pl b/src/tools/make/buildall.pl index f6a731d4..3b8b2805 100755 --- a/src/tools/make/buildall.pl +++ b/src/tools/make/buildall.pl @@ -119,18 +119,20 @@ sub svgtext { my $rows = keys %status; +my $width = 680; +my $height = ($rows+2) * $emsperline; + open(my $svg, ">build-status.svg") // die "Could not create build-status.svg."; -print $svg '', "\n"; -print $svg '', "\n"; +print $svg '', "\n"; +print $svg '', "\n"; my $col1 = 20; my $col2 = 110; my $col3 = 200; my $col4 = 310; my $col5 = 400; -my $col6 = 480; +my $col6 = 475; my $col7 = 580; svgtext($svg, $col1, 0, "#e0e0e0", "OS");