scripts/build/libc/none.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 2278 e86826b8621a
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@850
     1
# This file adds functions to build the C library for bare metal (IE. none)
yann@850
     2
# Copyright 2008 Yann E. MORIN
yann@850
     3
# Licensed under the GPL v2. See COPYING in the root of this package
yann@850
     4
yann@850
     5
do_libc_get() {
yann@850
     6
    :
yann@850
     7
}
yann@850
     8
yann@850
     9
do_libc_extract() {
yann@850
    10
    :
yann@850
    11
}
yann@850
    12
yann@850
    13
do_libc_check_config() {
yann@850
    14
    :
yann@850
    15
}
yann@850
    16
yann@850
    17
do_libc_start_files() {
yann@850
    18
    :
yann@850
    19
}
yann@850
    20
yann@850
    21
do_libc() {
yann@850
    22
    :
yann@850
    23
}