Change 12346 by ams@ams-lustre on 2001/10/06 23:14:01
Subject: [PATCH] (was Re: [PATCH] Re: What sort of Makefile.PL should
h2xs write?)
From: Nicholas Clark <[EMAIL PROTECTED]>
Date: Sat, 6 Oct 2001 21:46:43 +0100
Message-Id: <[EMAIL PROTECTED]>
Affected files ...
... //depot/perl/utils/h2xs.PL#66 edit
Differences ...
==== //depot/perl/utils/h2xs.PL#66 (text) ====
Index: perl/utils/h2xs.PL
--- perl/utils/h2xs.PL.~1~ Sat Oct 6 17:30:05 2001
+++ perl/utils/h2xs.PL Sat Oct 6 17:30:05 2001
@@ -1730,9 +1730,9 @@
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
End of Patch.