diff options
author | Pav Lucistnik <pav@FreeBSD.org> | 2004-06-05 14:55:37 +0000 |
---|---|---|
committer | Pav Lucistnik <pav@FreeBSD.org> | 2004-06-05 14:55:37 +0000 |
commit | 40ba6356cccfc94f8fe24e66ab79393169e9df04 (patch) | |
tree | 7b9debc1a8b9e64f4c8dc9ba6b11895fdf60ab34 /shells/bash-completion-classic/files | |
parent | 8f0c5e9c316745c109b29494174e08f4087e00f4 (diff) | |
download | ports-40ba6356cccfc94f8fe24e66ab79393169e9df04.tar.gz ports-40ba6356cccfc94f8fe24e66ab79393169e9df04.zip |
Notes
Diffstat (limited to 'shells/bash-completion-classic/files')
-rw-r--r-- | shells/bash-completion-classic/files/patch-aa | 22 |
1 files changed, 20 insertions, 2 deletions
diff --git a/shells/bash-completion-classic/files/patch-aa b/shells/bash-completion-classic/files/patch-aa index 5eace9dd220f..001c5448b350 100644 --- a/shells/bash-completion-classic/files/patch-aa +++ b/shells/bash-completion-classic/files/patch-aa @@ -1,5 +1,5 @@ ---- bash_completion.orig Wed Feb 18 09:10:18 2004 -+++ bash_completion Wed Feb 18 09:11:01 2004 +--- bash_completion.orig Wed Mar 31 19:45:32 2004 ++++ bash_completion Sat Jun 5 16:53:42 2004 @@ -31,14 +31,14 @@ if [ -n "${FUNCNAME:-}" ]; then # we're being sourced from within a function, so we can't use @@ -19,3 +19,21 @@ 2>/dev/null fi +@@ -1056,7 +1056,7 @@ + else + len=${#cur} + idx=0 +- for pval in $( /usr/sbin/postconf -m ); do ++ for pval in $( postconf -m ); do + if [[ "$cur" == "${pval:0:$len}" ]]; then + COMPREPLY[$idx]="$pval:" + idx=$(($idx+1)) +@@ -1132,7 +1132,7 @@ + fi + len=${#cur} + idx=0 +- for pval in $( /usr/sbin/postconf | cut -d ' ' -f 1 ); do ++ for pval in $( postconf | cut -d ' ' -f 1 ); do + if [[ "$cur" == "${pval:0:$len}" ]]; then + COMPREPLY[$idx]="$pval$eqext" + idx=$(($idx+1)) |