1
0
mirror of https://github.com/postgres/postgres.git synced 2025-07-30 11:03:19 +03:00

Fail in a nicer way if we have --with-perl and no Perl.

This commit is contained in:
Tom Lane
2010-01-07 03:24:57 +00:00
parent 2cb67c4c30
commit c7f08913ba
2 changed files with 9 additions and 1 deletions

5
configure vendored
View File

@ -6897,6 +6897,11 @@ $as_echo "$as_me: WARNING:
fi
if test "$with_perl" = yes; then
if test -z "$PERL"; then
{ { $as_echo "$as_me:$LINENO: error: Perl not found" >&5
$as_echo "$as_me: error: Perl not found" >&2;}
{ (exit 1); exit 1; }; }
fi
{ $as_echo "$as_me:$LINENO: checking for Perl archlibexp" >&5
$as_echo_n "checking for Perl archlibexp... " >&6; }