diff options
author | pav <pav@FreeBSD.org> | 2004-06-05 22:55:37 +0800 |
---|---|---|
committer | pav <pav@FreeBSD.org> | 2004-06-05 22:55:37 +0800 |
commit | 2a4caceb7f8195ff4ed017d777815db63924d0ea (patch) | |
tree | 129681748f69a6a98cbdb4c99993c4d8ae038fcd /shells | |
parent | 96f8048d57863763427db8bb8b0b53ef73dee728 (diff) | |
download | freebsd-ports-gnome-2a4caceb7f8195ff4ed017d777815db63924d0ea.tar.gz freebsd-ports-gnome-2a4caceb7f8195ff4ed017d777815db63924d0ea.tar.zst freebsd-ports-gnome-2a4caceb7f8195ff4ed017d777815db63924d0ea.zip |
- Postfix fix: don't expect postconf be in /usr/sbin, rely on it being in PATH
PR: ports/63314
Submitted by: Toni Viemero <toni.viemero@iki.fi>
Approved by: maintainer timeout (1 month)
Diffstat (limited to 'shells')
-rw-r--r-- | shells/bash-completion-classic/Makefile | 1 | ||||
-rw-r--r-- | shells/bash-completion-classic/files/patch-aa | 22 | ||||
-rw-r--r-- | shells/bash-completion/Makefile | 1 | ||||
-rw-r--r-- | shells/bash-completion/files/patch-aa | 22 |
4 files changed, 42 insertions, 4 deletions
diff --git a/shells/bash-completion-classic/Makefile b/shells/bash-completion-classic/Makefile index 8eb721594e3c..1efb5a006ba5 100644 --- a/shells/bash-completion-classic/Makefile +++ b/shells/bash-completion-classic/Makefile @@ -7,6 +7,7 @@ PORTNAME= bash-completion PORTVERSION= 20040331 +PORTREVISION= 1 CATEGORIES= shells MASTER_SITES= http://www.caliban.org/files/bash/ 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)) diff --git a/shells/bash-completion/Makefile b/shells/bash-completion/Makefile index 8eb721594e3c..1efb5a006ba5 100644 --- a/shells/bash-completion/Makefile +++ b/shells/bash-completion/Makefile @@ -7,6 +7,7 @@ PORTNAME= bash-completion PORTVERSION= 20040331 +PORTREVISION= 1 CATEGORIES= shells MASTER_SITES= http://www.caliban.org/files/bash/ diff --git a/shells/bash-completion/files/patch-aa b/shells/bash-completion/files/patch-aa index 5eace9dd220f..001c5448b350 100644 --- a/shells/bash-completion/files/patch-aa +++ b/shells/bash-completion/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)) |