summaryrefslogtreecommitdiff
path: root/systems/texlive/tlnet/tlpkg/tlperl/lib/Exporter/Heavy.pm
diff options
context:
space:
mode:
Diffstat (limited to 'systems/texlive/tlnet/tlpkg/tlperl/lib/Exporter/Heavy.pm')
-rw-r--r--systems/texlive/tlnet/tlpkg/tlperl/lib/Exporter/Heavy.pm4
1 files changed, 2 insertions, 2 deletions
diff --git a/systems/texlive/tlnet/tlpkg/tlperl/lib/Exporter/Heavy.pm b/systems/texlive/tlnet/tlpkg/tlperl/lib/Exporter/Heavy.pm
index 21b67c18c4..004815ea47 100644
--- a/systems/texlive/tlnet/tlpkg/tlperl/lib/Exporter/Heavy.pm
+++ b/systems/texlive/tlnet/tlpkg/tlperl/lib/Exporter/Heavy.pm
@@ -148,7 +148,7 @@ sub heavy_export {
if (!$export_cache->{$sym}) {
# accumulate the non-exports
push @carp,
- qq["$sym" is not exported by the $pkg module\n];
+ qq["$sym" is not exported by the $pkg module];
$oops++;
}
}
@@ -156,7 +156,7 @@ sub heavy_export {
}
if ($oops) {
require Carp;
- Carp::croak("@{carp}Can't continue after import errors");
+ Carp::croak(join("\n", @carp, "Can't continue after import errors"));
}
}
else {