summaryrefslogtreecommitdiff
path: root/shells/zsh/patches/patch-aa
diff options
context:
space:
mode:
authoruebayasi <uebayasi>2008-12-21 16:53:31 +0000
committeruebayasi <uebayasi>2008-12-21 16:53:31 +0000
commitc58295baa77128a8d30561cd4ba33892b18ec76f (patch)
treedaa02c85209e717a7a550b0d9ec09d70121eb29e /shells/zsh/patches/patch-aa
parenta2317734f9aaba549ccd4379d125beafb2eed9a1 (diff)
downloadpkgsrc-c58295baa77128a8d30561cd4ba33892b18ec76f.tar.gz
Update zsh to 4.2.7.
Changes are unknown.
Diffstat (limited to 'shells/zsh/patches/patch-aa')
-rw-r--r--shells/zsh/patches/patch-aa20
1 files changed, 0 insertions, 20 deletions
diff --git a/shells/zsh/patches/patch-aa b/shells/zsh/patches/patch-aa
deleted file mode 100644
index 40ed01d4823..00000000000
--- a/shells/zsh/patches/patch-aa
+++ /dev/null
@@ -1,20 +0,0 @@
-$NetBSD: patch-aa,v 1.7 2008/07/13 18:22:01 tonnerre Exp $
-
---- Util/difflog.pl.orig 2002-04-18 16:35:17.000000000 +0200
-+++ Util/difflog.pl
-@@ -2,10 +2,13 @@
-
- use strict;
- use IO::File;
-+use File::Temp;
-
- my @differ = qw(diff -bw);
--my $oldtmp = "/tmp/difflog$$.old";
--my $newtmp = "/tmp/difflog$$.new";
-+my $oldf = new File::Temp(TEMPLATE => 'difflogXXXXX', DIR => '/tmp/', SUFFIX => '.old');
-+my $newf = new File::Temp(TEMPLATE => 'difflogXXXXX', DIR => '/tmp/', SUFFIX => '.new');
-+my $oldtmp = $oldf->filename;
-+my $newtmp = $newf->filename;
-
- my $newfn = pop(@ARGV);
- my $oldfn = pop(@ARGV);