summaryrefslogtreecommitdiff
path: root/shells/zsh/patches/patch-Completion_Unix_Command__du
diff options
context:
space:
mode:
Diffstat (limited to 'shells/zsh/patches/patch-Completion_Unix_Command__du')
-rw-r--r--shells/zsh/patches/patch-Completion_Unix_Command__du14
1 files changed, 0 insertions, 14 deletions
diff --git a/shells/zsh/patches/patch-Completion_Unix_Command__du b/shells/zsh/patches/patch-Completion_Unix_Command__du
deleted file mode 100644
index 0b6134150a2..00000000000
--- a/shells/zsh/patches/patch-Completion_Unix_Command__du
+++ /dev/null
@@ -1,14 +0,0 @@
-$NetBSD: patch-Completion_Unix_Command__du,v 1.1 2015/07/26 22:04:13 snj Exp $
-
-Unbreak filename completion on non-GNU du binaries like NetBSD's.
-Upstreadm commit 806f73a0b3d3959d5af12ce97e0258b4d4fe7d76
-
---- Completion/Unix/Command/_du.orig 2015-07-26 14:39:36.000000000 -0700
-+++ Completion/Unix/Command/_du 2015-07-26 14:39:17.000000000 -0700
-@@ -74,5 +74,5 @@ else
- do
- [[ $OSTYPE = $~pattern ]] && args+=( $arg )
- done
-- _arguments -s -A "-*" $args
-+ _arguments -s -A "-*" $args '*:file:_files'
- fi