summaryrefslogtreecommitdiff
path: root/utils
diff options
context:
space:
mode:
authorNicholas Clark <nick@ccl4.org>2001-10-06 22:46:43 +0100
committerAbhijit Menon-Sen <ams@wiw.org>2001-10-06 23:14:01 +0000
commitc1e05be8f96121a409e016f3e505a812142f9ee1 (patch)
tree210b4bc5655f37c170d3e0212b1ea3132a63499f /utils
parent5317c87c3eacba5e08202600b10b69ea57fe42f4 (diff)
downloadperl-c1e05be8f96121a409e016f3e505a812142f9ee1.tar.gz
(was Re: [PATCH] Re: What sort of Makefile.PL should
h2xs write?) Message-Id: <20011006214643.L38756@plum.flirble.org> p4raw-id: //depot/perl@12346
Diffstat (limited to 'utils')
-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