1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35
|
From 62214ae90d32bba170a3e22b95cd5b2c57a74b62 Mon Sep 17 00:00:00 2001
From: Colin Watson <cjwatson@debian.org>
Date: Wed, 15 Jan 2014 16:19:49 +0000
Subject: Disable in-place editing in Makefile.PL
Forwarded: no
Last-Update: 2010-05-26
Patch-Name: no-inplace.patch
---
Makefile.PL | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/Makefile.PL b/Makefile.PL
index 771bcac..65f1e23 100644
--- a/Makefile.PL
+++ b/Makefile.PL
@@ -116,7 +116,7 @@ sub MY::libscan
sub oldWarnings
{
- local ($^I) = ".bak" ;
+ local ($^I) = "" ;
local (@ARGV) = @_ ;
while (<>)
@@ -140,7 +140,7 @@ sub oldWarnings
sub newWarnings
{
- local ($^I) = ".bak" ;
+ local ($^I) = "" ;
local (@ARGV) = @_ ;
while (<>)
|