summaryrefslogtreecommitdiff
path: root/utils
diff options
context:
space:
mode:
authorJarkko Hietaniemi <jhi@iki.fi>2002-06-07 19:28:52 +0000
committerJarkko Hietaniemi <jhi@iki.fi>2002-06-07 19:28:52 +0000
commit6ba90e15f42bb7931083ac52cc71aa835bee2067 (patch)
tree43f67cbd113a8d6561c0e76166edfcf184508d0d /utils
parent07853d7a3689bd5640448962dc55ce2035962584 (diff)
downloadperl-6ba90e15f42bb7931083ac52cc71aa835bee2067.tar.gz
perlivp: tell what went wrong.
p4raw-id: //depot/perl@17069
Diffstat (limited to 'utils')
-rw-r--r--utils/perlivp.PL6
1 files changed, 3 insertions, 3 deletions
diff --git a/utils/perlivp.PL b/utils/perlivp.PL
index 74a72a3476..f89ba0bc46 100644
--- a/utils/perlivp.PL
+++ b/utils/perlivp.PL
@@ -174,7 +174,7 @@ foreach (qw(Config.pm ExtUtils/Installed.pm)) {
$needed_there++;
}
else {
- print "# Needed module `$_' does not appear to be properly installed.\n";
+ print "# Needed module `$_' does not appear to be properly installed ($@).\n";
}
$@ = undef;
}
@@ -210,7 +210,7 @@ if (defined($Config{'extensions'})) {
$extensions_there++;
}
else {
- print "# Required module `$_' does not appear to be properly installed.\n";
+ print "# Required module `$_' does not appear to be properly installed ($@).\n";
$@ = undef;
}
$extensions_total++;
@@ -328,7 +328,7 @@ foreach (@ph_files) {
$ph_there++;
}
else {
- print "# Perl header `$_' does not appear to be properly installed.\n";
+ print "# Perl header `$_' does not appear to be properly installed ($@).\n";
}
$@ = undef;
}