Re: [PATCH] Errno doesnt rebuild when things it depends on in Config.pm change
authorYves Orton <demerphq@gmail.com>
Fri, 15 Dec 2006 12:52:45 +0000 (13:52 +0100)
committerRafael Garcia-Suarez <rgarciasuarez@gmail.com>
Fri, 15 Dec 2006 13:51:44 +0000 (13:51 +0000)
Message-ID: <9b18b3110612150352y2394954bg5acd5ec5fd320d33@mail.gmail.com>

p4raw-id: //depot/perl@29558

ext/Errno/Makefile.PL

index 604d4fb..527f700 100644 (file)
@@ -1,7 +1,26 @@
 use ExtUtils::MakeMaker;
+use Config;
 
 @VMS = ($^O eq 'VMS') ? (MAN3PODS => {}) : ();
 
+my $arch = "$Config{'archname'}-$Config{'osvers'}";
+my $got = "";
+if (-e 'arch.txt') {
+    open my $in, "<", "arch.txt" or die "Can't read 'arch.txt': $!";
+    $got = <$in>;
+    close $in;
+}
+if ($got ne $arch) {
+    if (-e "Errno.pm") {
+        print "Removing old 'Errno.pm'\n";
+        unlink "Errno.pm" 
+            or die "Failed to remove out of date 'Errno.pm': $!";
+    }
+    open my $out, ">", "arch.txt" or die "Can't write 'arch.txt': $!";
+    print $out $arch;
+    close $out;
+}
+
 WriteMakefile(
     NAME        => 'Errno',
     VERSION_FROM => 'Errno_pm.PL',