config/companion_libs/isl.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 3216 bfad02f03c75
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 # ISL options
     2 
     3 choice
     4     bool
     5     prompt "ISL version"
     6 # Don't remove next line
     7 # CT_INSERT_VERSION_BELOW
     8 
     9 config ISL_V_0_12_2
    10     bool
    11     prompt "0.12.2"
    12 
    13 config ISL_V_0_11_1
    14     bool
    15     prompt "0.11.1"
    16 
    17 endchoice
    18 
    19 config ISL_VERSION
    20     string
    21 # Don't remove next line
    22 # CT_INSERT_VERSION_STRING_BELOW
    23     default "0.12.2" if ISL_V_0_12_2
    24     default "0.11.1" if ISL_V_0_11_1