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>
yann@239
     1
# strace
yann@239
     2
yann@2444
     3
## depends on ! BACKEND
yann@239
     4
yann@239
     5
choice
yann@239
     6
    bool
yann@239
     7
    prompt "strace version"
yann@1535
     8
# Don't remove next line
yann@1535
     9
# CT_INSERT_VERSION_BELOW
yann@239
    10
netzimme@3255
    11
config STRACE_V_4_8
netzimme@3255
    12
    bool
netzimme@3255
    13
    prompt "4.8"
netzimme@3255
    14
    depends on CONFIGURE_has_xz
netzimme@3255
    15
netzimme@3255
    16
config STRACE_V_4_7
netzimme@3255
    17
    bool
netzimme@3255
    18
    prompt "4.7"
netzimme@3255
    19
    depends on CONFIGURE_has_xz
netzimme@3255
    20
bryanhundven@2733
    21
config STRACE_V_4_6
bryanhundven@2733
    22
    bool
yann@3149
    23
    prompt "4.6"
yann@2868
    24
    depends on CONFIGURE_has_xz
bryanhundven@2733
    25
yann@2006
    26
config STRACE_V_4_5_20
yann@2006
    27
    bool
yann@3149
    28
    prompt "4.5.20"
yann@2006
    29
yann@1613
    30
config STRACE_V_4_5_19
yann@1613
    31
    bool
yann@1785
    32
    prompt "4.5.19"
yann@1613
    33
yann@1534
    34
config STRACE_V_4_5_18
yann@239
    35
    bool
yann@1613
    36
    prompt "4.5.18"
yann@1534
    37
yann@239
    38
endchoice
yann@239
    39
yann@239
    40
config STRACE_VERSION
yann@239
    41
    string
yann@1535
    42
# Don't remove next line
yann@1535
    43
# CT_INSERT_VERSION_STRING_BELOW
netzimme@3255
    44
    default "4.8" if STRACE_V_4_8
netzimme@3255
    45
    default "4.7" if STRACE_V_4_7
bryanhundven@2733
    46
    default "4.6" if STRACE_V_4_6
yann@2006
    47
    default "4.5.20" if STRACE_V_4_5_20
yann@1613
    48
    default "4.5.19" if STRACE_V_4_5_19
yann@1534
    49
    default "4.5.18" if STRACE_V_4_5_18