From: Joey Hess Date: Wed, 1 Jul 2009 19:38:54 +0000 (-0400) Subject: improve list formatting X-Git-Tag: 7.3.0~1 X-Git-Url: https://git.donarmstrong.com/?a=commitdiff_plain;h=e93b119e05d6b5cac117881455bf14b6b14abd37;p=debhelper.git improve list formatting --- diff --git a/Debian/Debhelper/Dh_Buildsystems.pm b/Debian/Debhelper/Dh_Buildsystems.pm index 64ec18a..a9a6b91 100644 --- a/Debian/Debhelper/Dh_Buildsystems.pm +++ b/Debian/Debhelper/Dh_Buildsystems.pm @@ -139,7 +139,7 @@ sub buildsystems_list { elsif (! defined $auto && ! $inst->{thirdparty} && $inst->check_auto_buildable($step)) { $auto = $inst->NAME(); } - printf("%s - %s", $inst->NAME(), $inst->DESCRIPTION()); + printf("%-20s %s", $inst->NAME(), $inst->DESCRIPTION()); print " [3rd party]" if $inst->{thirdparty}; print "\n"; }