summaryrefslogtreecommitdiff
path: root/completions/configure
diff options
context:
space:
mode:
Diffstat (limited to 'completions/configure')
-rw-r--r--completions/configure8
1 files changed, 4 insertions, 4 deletions
diff --git a/completions/configure b/completions/configure
index 0e37726b..726c7bda 100644
--- a/completions/configure
+++ b/completions/configure
@@ -27,13 +27,13 @@ _configure()
[[ "$cur" != -* ]] && return
if [[ -n $COMP_CONFIGURE_HINTS ]]; then
- COMPREPLY=( $( compgen -W "$( $1 --help 2>&1 | \
+ COMPREPLY=( $(compgen -W "$($1 --help 2>&1 | \
awk '/^ --[A-Za-z]/ { print $1; \
- if ($2 ~ /--[A-Za-z]/) print $2 }' | command sed -e 's/[[,].*//g' )" \
- -- "$cur" ) )
+ if ($2 ~ /--[A-Za-z]/) print $2 }' | command sed -e 's/[[,].*//g')" \
+ -- "$cur") )
[[ $COMPREPLY == *=* ]] && compopt -o nospace
else
- COMPREPLY=( $( compgen -W '$( _parse_help "$1" )' -- "$cur" ) )
+ COMPREPLY=( $(compgen -W '$(_parse_help "$1")' -- "$cur") )
[[ $COMPREPLY == *= ]] && compopt -o nospace
fi
} &&