ct-ng.comp
author "Yann E. MORIN" <yann.morin.1998@free.fr>
Wed Jun 25 23:33:01 2014 +0200 (2014-06-25)
changeset 3325 069f43a215cc
parent 3167 15f57d843296
permissions -rw-r--r--
all: fix wildcard to work with make-4.x

In make-3.8x, the $(wildacrd) function would sort the entries,
while in make-4.x, it would just return the entries in any
unpredictable order [*]

Use the $(sort) function to get reproducible behaviour.

[*] Well, most probably the roder the entries appear when read
from readdir()

Reported-by: Andrew Ruder <andrew.ruder@elecsyscorp.com>
Signed-off-by: "Yann E. MORIN" <yann.morin.1998@free.fr>
Tested-by: Andrew Ruder <andrew.ruder@elecsyscorp.com>
     1 # To be sourced
     2 
     3 _ct_ng () {
     4     local cur prev samples show_samples actions steps start_steps stop_steps ct_ng_opts vars
     5     COMPREPLY=()
     6     cur=$(_get_cword)
     7     prev=${COMP_WORDS[COMP_CWORD-1]}
     8 
     9     samples=$( "${COMP_WORDS[0]}" list-samples-short 2>/dev/null )
    10     show_samples=$(echo "${samples}" |sed -r -e 's/(^| )/\1show-/g;')
    11     build_samples=$(echo "${samples}" |sed -r -e 's/(^| )/\1build-/g;')
    12     check_samples=$(echo "${samples}" |sed -r -e 's/(^| )/\1check-/g;')
    13 
    14     steps=$(${COMP_WORDS[0]} list-steps 2>/dev/null |awk '$1 == "-" { print $2; }')
    15     start_steps=$(echo "${steps}" |sed -r -e 's/($| )/\1+/;')
    16     stop_steps=$(echo "${steps}" |sed -r -e 's/(^| )/+\1/;')
    17 
    18     actions='help menuconfig oldconfig saveconfig extractconfig
    19              defconfig savedefconfig
    20              build build. build-all build-all.
    21              wiki-samples list-samples list-samples-short check-samples
    22              list-steps
    23              show-tuple show-all show-config
    24              clean distclean updatetools
    25              tarball version'
    26 
    27     vars="RESTART= STOP= PREFIX= V= DEFCONFIG="
    28 
    29     ct_ng_opts="${samples} ${show_samples} ${build_samples} ${check_samples}
    30                 ${steps} ${start_steps} ${stop_steps}
    31                 ${actions} ${vars}"
    32 
    33     COMPREPLY=($(compgen -W "${ct_ng_opts}" -- "${cur}"))
    34     return 0
    35 }
    36 complete -F _ct_ng ct-ng