summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--utils/h2xs.PL4
1 files changed, 2 insertions, 2 deletions
diff --git a/utils/h2xs.PL b/utils/h2xs.PL
index e57779c47f..b8b91e807f 100644
--- a/utils/h2xs.PL
+++ b/utils/h2xs.PL
@@ -1730,9 +1730,9 @@ $generate_code
else {
use File::Copy;
copy ('fallback.c', '$constsfname.c')
- or die "Can't copy fallback.c to $constsfname.c: $!";
+ or die "Can't copy fallback.c to $constsfname.c: \$!";
copy ('fallback.xs', '$constsfname.xs')
- or die "Can't copy fallback.xs to $constsfname.xs: $!";
+ or die "Can't copy fallback.xs to $constsfname.xs: \$!";
}
END