patches/glibc/2.6/190-alpha-atfcts.patch
author "Yann E. MORIN" <yann.morin.1998@free.fr>
Wed Jun 25 23:33:01 2014 +0200 (2014-06-25)
changeset 3325 069f43a215cc
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 --- glibc-2.6/sysdeps/unix/sysv/linux/kernel-features.h	2006-07-29 07:43:27.000000000 +0300
     2 +++ glibc-2.6/sysdeps/unix/sysv/linux/kernel-features.h.new	2008-07-26 08:45:06.000000000 +0300
     3 @@ -445,7 +445,7 @@
     4  /* The *at syscalls were introduced just after 2.6.16-rc1.  Due to the way the
     5     kernel versions are advertised we can only rely on 2.6.17 to have
     6     the code.  */
     7 -#if __LINUX_KERNEL_VERSION >= 0x020611
     8 +#if __LINUX_KERNEL_VERSION >= 0x020611 && !defined __alpha__
     9  # define __ASSUME_ATFCTS	1
    10  #endif
    11