summaryrefslogtreecommitdiff
path: root/community/schroot/colon-completion.patch
diff options
context:
space:
mode:
Diffstat (limited to 'community/schroot/colon-completion.patch')
-rw-r--r--community/schroot/colon-completion.patch20
1 files changed, 0 insertions, 20 deletions
diff --git a/community/schroot/colon-completion.patch b/community/schroot/colon-completion.patch
deleted file mode 100644
index 2df1bd16e..000000000
--- a/community/schroot/colon-completion.patch
+++ /dev/null
@@ -1,20 +0,0 @@
-diff -wbBur schroot-1.6.5.org/etc/bash_completion/schroot schroot-1.6.5/etc/bash_completion/schroot
---- schroot-1.6.5.org/etc/bash_completion/schroot 2013-01-28 15:28:04.000000000 +0400
-+++ schroot-1.6.5/etc/bash_completion/schroot 2013-01-28 15:30:22.297213632 +0400
-@@ -21,14 +21,14 @@
- local cur prev options
-
- COMPREPLY=()
-- cur=${COMP_WORDS[COMP_CWORD]}
-- prev=${COMP_WORDS[COMP_CWORD-1]}
-+ _get_comp_words_by_ref -n : cur prev
-
- # Select precisely the tokens from schroot --help that begin with a dash
- options=$(schroot --help | sed 's/\(^\|[[:space:]]\)[^[:space:]-][^[:space:]]*//g')
-
- if [ "$prev" = "-c" ] || [ "$prev" = "--chroot" ]; then
- COMPREPLY=( $(compgen -W "$(schroot -a -l)" -- $cur) )
-+ __ltrim_colon_completions "$cur"
- else
- COMPREPLY=( $(compgen -W "$options" -- $cur) )
- fi