Skip Menu |

This queue is for tickets about the ExtUtils-MakeMaker CPAN distribution.

Report information
The Basics
Id: 26234
Status: resolved
Priority: 0/
Queue: ExtUtils-MakeMaker

People
Owner: Nobody in particular
Requestors: at [...] altlinux.ru
rgarciasuarez [...] gmail.com
SMPETERS [...] cpan.org
Cc:
AdminCc:

Bug Information
Severity: (no value)
Broken in: (no value)
Fixed in: (no value)



CC: bug-ExtUtils-MakeMaker [...] rt.cpan.org
Subject: [PATCH] ExtUtils/MM_Unix.pm (fixin): do not clobber $/
Date: Sat, 24 Feb 2007 15:38:58 +0300
To: perl5-porters [...] perl.org
From: Alexey Tourbin <at [...] altlinux.ru>
--- lib/ExtUtils/MM_Unix.pm | 2 +- 1 files changed, 1 insertions(+), 1 deletions(-) diff --git a/lib/ExtUtils/MM_Unix.pm b/lib/ExtUtils/MM_Unix.pm index 22cea82..2fd2bca 100644 --- a/lib/ExtUtils/MM_Unix.pm +++ b/lib/ExtUtils/MM_Unix.pm @@ -1129,7 +1129,7 @@ eval 'exec $interpreter $arg -S \$0 \${1+"\$\@"}' # Print out the new #! line (or equivalent). local $\; - undef $/; + local $/; print FIXOUT $shb, <FIXIN>; close FIXIN; close FIXOUT; -- 1.5.0.1.GIT
Subject: Re: [PATCH] ExtUtils/MM_Unix.pm (fixin): do not clobber $/
Date: Sat, 24 Feb 2007 16:49:33 +0100
To: perl5-porters [...] perl.org, bug-ExtUtils-MakeMaker [...] rt.cpan.org, makemaker [...] perl.org
From: "Rafael Garcia-Suarez" <rgarciasuarez [...] gmail.com>
On 24/02/07, Alexey Tourbin <at@altlinux.ru> wrote: Show quoted text
> --- > lib/ExtUtils/MM_Unix.pm | 2 +- > 1 files changed, 1 insertions(+), 1 deletions(-)
Thanks, applied to bleadperl as change #30390. (also bumped $VERSION to 1.51_02) Show quoted text
> diff --git a/lib/ExtUtils/MM_Unix.pm b/lib/ExtUtils/MM_Unix.pm > index 22cea82..2fd2bca 100644 > --- a/lib/ExtUtils/MM_Unix.pm > +++ b/lib/ExtUtils/MM_Unix.pm > @@ -1129,7 +1129,7 @@ eval 'exec $interpreter $arg -S \$0 \${1+"\$\@"}' > > # Print out the new #! line (or equivalent). > local $\; > - undef $/; > + local $/; > print FIXOUT $shb, <FIXIN>; > close FIXIN; > close FIXOUT; > -- > 1.5.0.1.GIT >
Subject: From P5P - [PATCH] ExtUtils/MM_Unix.pm (fixin): do not clobber $/
Change 30390 by rgs@marais on 2007/02/24 15:48:49 Subject: [PATCH] ExtUtils/MM_Unix.pm (fixin): do not clobber $/ From: Alexey Tourbin <at@altlinux.ru> Date: Sat, 24 Feb 2007 15:38:58 +0300 Message-ID: <20070224123858.GA11434@localhost.localdomain> Affected files ... ... //depot/perl/lib/ExtUtils/MM_Unix.pm#218 edit Differences ... ==== //depot/perl/lib/ExtUtils/MM_Unix.pm#218 (text) ==== @@ -18,7 +18,7 @@ use ExtUtils::MakeMaker qw($Verbose neatvalue); -$VERSION = '1.51_01'; +$VERSION = '1.51_02'; require ExtUtils::MM_Any; @ISA = qw(ExtUtils::MM_Any); @@ -1129,7 +1129,7 @@ # Print out the new #! line (or equivalent). local $\; - undef $/; + local $/; print FIXOUT $shb, <FIXIN>; close FIXIN; close FIXOUT;
Thanks. Will be in 6.33.