Commit 863fa43e authored by Andrew Dunstan's avatar Andrew Dunstan

Suppress another CR in program output

This one was exposed by a12c75a1.

Backpatch to release 11 where check_pg_config was introduced.
parent 5daf682c
......@@ -560,6 +560,7 @@ sub check_pg_config
\$stdout, '2>', \$stderr
or die "could not execute pg_config";
chomp($stdout);
$stdout =~ s/\r$//;
open my $pg_config_h, '<', "$stdout/pg_config.h" or die "$!";
my $match = (grep { /^$regexp/ } <$pg_config_h>);
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment