commit: 2378d38970d8d3b8d9d7a2e84e6356e6f0032686
Author: Kerin Millar <kfm <AT> plushkava <DOT> net>
AuthorDate: Sat Jan 10 03:40:35 2026 +0000
Commit: Kerin Millar <kfm <AT> plushkava <DOT> net>
CommitDate: Sat Jan 10 03:41:22 2026 +0000
URL: https://gitweb.gentoo.org/proj/locale-gen.git/commit/?id=2378d389
mkconfig: pass -o " " to column(1)
Instruct column(1) to separate the (left-aligned) field and trailing
comment with just one <space>, rather than two. It looks better.
Signed-off-by: Kerin Millar <kfm <AT> plushkava.net>
mkconfig | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/mkconfig b/mkconfig
index 6aa7638..7216348 100755
--- a/mkconfig
+++ b/mkconfig
@@ -118,7 +118,7 @@ sub open_column ($sep) {
# The encoding is applied as a precaution; over-wide characters written
# to the pipe become Perl escape sequences e.g. U+00E5 => \x{00e5}.
- if (! open my $pipe, '|-:encoding(US-ASCII)', 'column', '-ts', $sep) {
+ if (! open my $pipe, '|-:encoding(US-ASCII)', 'column', '-t', '-s',
$sep, '-o', ' ') {
exit 127;
} else {
return $pipe;