]> git.pld-linux.org Git - packages/perl.git/commitdiff
- removed instmodsh part for 5.8.8
authorradek <radek@pld-linux.org>
Mon, 3 Apr 2006 11:05:09 +0000 (11:05 +0000)
committercvs2git <feedback@pld-linux.org>
Sun, 24 Jun 2012 12:13:13 +0000 (12:13 +0000)
Changed files:
    perl-5.8.7-CAN-2004-0976.patch -> 1.2

perl-5.8.7-CAN-2004-0976.patch

index ae13fe3a9464a51fe18a6cffede1978c9fe3af47..647e0792b786b3cd4a1683bb2e7d5e8de90300ad 100644 (file)
  1 while unlink $file, "$file.dir", "$file.pag";
  tryout('GDBM_File', $file, 1);  # Test 1..4
  1 while unlink $file, "$file.dir", "$file.pag";
---- perl-5.8.7/lib/ExtUtils/instmodsh.CAN-2004-0976    2004-01-05 17:34:59.000000000 -0500
-+++ perl-5.8.7/lib/ExtUtils/instmodsh  2005-11-08 12:42:25.000000000 -0500
-@@ -2,6 +2,7 @@
- use strict;
- use IO::File;
-+use File::Temp;
- use ExtUtils::Packlist;
- use ExtUtils::Installed;
-@@ -58,15 +59,14 @@
-       $reply =~ /^t\s*/ and do
-          {
-          my $file = (split(' ', $reply))[1];
--         my $tmp = "/tmp/inst.$$";
--         if (my $fh = IO::File->new($tmp, "w"))
--            {
--            $fh->print(join("\n", $Inst->files($module)));
--            $fh->close();
--            system("tar cvf $file -I $tmp");
--            unlink($tmp);
--            last CASE;
--            }
-+       my ($fh, $tmp) = File::Temp::tempfile(UNLINK => 1);
-+       $fh->print(join("\n", $Inst->files($module)));
-+       $fh->close();
-+       # This used to use -I which is wrong for GNU tar.
-+       system("tar cvf $file -T $tmp");
-+       unlink($tmp);
-+       last CASE;
-+         }  
-          else { print("Can't open $file: $!\n"); }
-          last CASE;
-          };
---- perl-5.8.7/lib/ExtUtils/MakeMaker.pm.CAN-2004-0976 2004-01-05 17:34:59.000000000 -0500
-+++ perl-5.8.7/lib/ExtUtils/MakeMaker.pm       2005-11-08 13:07:36.000000000 -0500
-@@ -1013,7 +1013,7 @@
- The Makefile to be produced may be altered by adding arguments of the
- form C<KEY=VALUE>. E.g.
--  perl Makefile.PL PREFIX=/tmp/myperl5
-+  perl Makefile.PL PREFIX=~/myperl5
- Other interesting targets in the generated Makefile are
-@@ -1355,13 +1355,13 @@
- This is the root directory into which the code will be installed.  It
- I<prepends itself to the normal prefix>.  For example, if your code
--would normally go into /usr/local/lib/perl you could set DESTDIR=/tmp/
--and installation would go into /tmp/usr/local/lib/perl.
-+would normally go into /usr/local/lib/perl you could set DESTDIR=~/myperl/
-+and installation would go into ~/myperl/usr/local/lib/perl.
- This is primarily of use for people who repackage Perl modules.
- NOTE: Due to the nature of make, it is important that you put the trailing
--slash on your DESTDIR.  "/tmp/" not "/tmp".
-+slash on your DESTDIR.  "~/myperl/" not "~/myperl".
- =item DIR
 --- perl-5.8.7/lib/CGI/Cookie.pm.CAN-2004-0976 2005-05-16 04:41:03.000000000 -0400
 +++ perl-5.8.7/lib/CGI/Cookie.pm       2005-11-08 14:56:15.141710000 -0500
 @@ -407,7 +407,7 @@
This page took 0.123867 seconds and 4 git commands to generate.