config/debug/strace.in
author "Yann E. MORIN" <yann.morin.1998@free.fr>
Wed Jun 25 23:33:01 2014 +0200 (2014-06-25)
changeset 3325 069f43a215cc
parent 3149 e1611da4bb05
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 # strace
     2 
     3 ## depends on ! BACKEND
     4 
     5 choice
     6     bool
     7     prompt "strace version"
     8 # Don't remove next line
     9 # CT_INSERT_VERSION_BELOW
    10 
    11 config STRACE_V_4_8
    12     bool
    13     prompt "4.8"
    14     depends on CONFIGURE_has_xz
    15 
    16 config STRACE_V_4_7
    17     bool
    18     prompt "4.7"
    19     depends on CONFIGURE_has_xz
    20 
    21 config STRACE_V_4_6
    22     bool
    23     prompt "4.6"
    24     depends on CONFIGURE_has_xz
    25 
    26 config STRACE_V_4_5_20
    27     bool
    28     prompt "4.5.20"
    29 
    30 config STRACE_V_4_5_19
    31     bool
    32     prompt "4.5.19"
    33 
    34 config STRACE_V_4_5_18
    35     bool
    36     prompt "4.5.18"
    37 
    38 endchoice
    39 
    40 config STRACE_VERSION
    41     string
    42 # Don't remove next line
    43 # CT_INSERT_VERSION_STRING_BELOW
    44     default "4.8" if STRACE_V_4_8
    45     default "4.7" if STRACE_V_4_7
    46     default "4.6" if STRACE_V_4_6
    47     default "4.5.20" if STRACE_V_4_5_20
    48     default "4.5.19" if STRACE_V_4_5_19
    49     default "4.5.18" if STRACE_V_4_5_18