scripts/build/arch/s390.sh
author "Yann E. MORIN" <yann.morin.1998@free.fr>
Wed Jun 25 23:33:01 2014 +0200 (2014-06-25)
changeset 3325 069f43a215cc
parent 1636 3167f947f93f
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>
harold@1629
     1
# Compute s390-specific values
harold@1629
     2
harold@1629
     3
CT_DoArchTupleValues() {
yann@1636
     4
    # That's the only thing to override
yann@1636
     5
    if [ "${CT_ARCH_64}" = "y" ]; then
w@3169
     6
        CT_TARGET_ARCH="s390x${CT_ARCH_SUFFIX}"
yann@1636
     7
    fi
harold@1629
     8
}