patches/gdb/6.8a/120-tdep-opcode-include-workaround.patch
author "Yann E. MORIN" <yann.morin.1998@free.fr>
Wed Jun 25 23:33:01 2014 +0200 (2014-06-25)
changeset 3325 069f43a215cc
parent 747 d3e603e7c17c
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 Original patch from gentoo: gentoo/src/patchsets/gdb/6.8/20_all_gdb-tdep-opcode-include-workaround.patch
     2 -= BEGIN original header =-
     3 workaround build failure
     4 
     5 http://bugs.gentoo.org/216368
     6 
     7 -= END original header =-
     8 diff -durN gdb-6.8.orig/gdb/frv-tdep.c gdb-6.8/gdb/frv-tdep.c
     9 --- gdb-6.8.orig/gdb/frv-tdep.c	2008-01-11 14:19:59.000000000 +0100
    10 +++ gdb-6.8/gdb/frv-tdep.c	2008-06-17 16:07:34.000000000 +0200
    11 @@ -32,7 +32,7 @@
    12  #include "gdb_assert.h"
    13  #include "sim-regno.h"
    14  #include "gdb/sim-frv.h"
    15 -#include "opcodes/frv-desc.h"	/* for the H_SPR_... enums */
    16 +#include "../opcodes/frv-desc.h"	/* for the H_SPR_... enums */
    17  #include "symtab.h"
    18  #include "elf-bfd.h"
    19  #include "elf/frv.h"
    20 diff -durN gdb-6.8.orig/gdb/mep-tdep.c gdb-6.8/gdb/mep-tdep.c
    21 --- gdb-6.8.orig/gdb/mep-tdep.c	2008-01-11 14:20:02.000000000 +0100
    22 +++ gdb-6.8/gdb/mep-tdep.c	2008-06-17 16:07:34.000000000 +0200
    23 @@ -53,8 +53,8 @@
    24  
    25  /* Get the user's customized MeP coprocessor register names from
    26     libopcodes.  */
    27 -#include "opcodes/mep-desc.h"
    28 -#include "opcodes/mep-opc.h"
    29 +#include "../opcodes/mep-desc.h"
    30 +#include "../opcodes/mep-opc.h"
    31  
    32  
    33  /* The gdbarch_tdep structure.  */