diff options
author | Nicholas Clark <nick@ccl4.org> | 2001-10-06 22:46:43 +0100 |
---|---|---|
committer | Abhijit Menon-Sen <ams@wiw.org> | 2001-10-06 23:14:01 +0000 |
commit | c1e05be8f96121a409e016f3e505a812142f9ee1 (patch) | |
tree | 210b4bc5655f37c170d3e0212b1ea3132a63499f /utils | |
parent | 5317c87c3eacba5e08202600b10b69ea57fe42f4 (diff) | |
download | perl-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.PL | 4 |
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 |