From 2b76c312e340cdbb9c164a6d354d98251312c613 Mon Sep 17 00:00:00 2001 From: Jan Nieuwenhuizen Date: Tue, 20 Jan 2009 11:22:32 +0100 Subject: [PATCH] Do not eat help2man error output. Helps debugging. --- scripts/build/help2man.pl | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/scripts/build/help2man.pl b/scripts/build/help2man.pl index 9cb09c4859..9349010964 100644 --- a/scripts/build/help2man.pl +++ b/scripts/build/help2man.pl @@ -190,7 +190,7 @@ setlocale LC_TIME, 'C'; # Grab help and version info from executable. my ($help_text, $version_text) = map { - join '', map { s/ +$//; expand $_ } `$ARGV[0] $_ 2>/dev/null` + join '', map { s/ +$//; expand $_ } `$ARGV[0] $_` or die "$this_program: can't get `$_' info from $ARGV[0]\n" } $help_option, $version_option; -- 2.39.5