config/companion_libs/mpc.in
author Daniel Schultze <kinglag@gmail.com>
Thu Jan 16 14:55:23 2014 -0800 (2014-01-16)
changeset 3281 529a71ea091e
parent 3142 6569f6a9060c
child 3284 f9dec799e51e
permissions -rw-r--r--
libc/glibc: adding patch for glibc-2.10.1 for make-3.82 and later

Make 3.82 broke makefiles that used implicit and explicit rules on the
same line.

This was a undocumented feature that broke many makefiles.

This patch removes the offending rule and replaces it with two separate rules.

Signed-off-by: Daniel Schultze <kinglag@gmail.com>
[yann.morin.1998@free.fr: make it a crosstool-ng patch]
Signed-off-by: "Yann E. MORIN" <yann.morin.1998@free.fr>
Message-Id: <CAEsx0Y-PDK7g6XanR=GRWT-8efMX=qAuB4Ub7wakF5sH=tQGxA@mail.gmail.com>
Patchwork-Id: 311876
     1 # MPC options
     2 
     3 choice
     4     bool
     5     prompt "MPC version"
     6 # Don't remove next line
     7 # CT_INSERT_VERSION_BELOW
     8 
     9 config MPC_V_1_0_1
    10     bool
    11     prompt "1.0.1"
    12 
    13 config MPC_V_1_0
    14     bool
    15     prompt "1.0"
    16 
    17 config MPC_V_0_9
    18     bool
    19     prompt "0.9"
    20 
    21 config MPC_V_0_8_2
    22     bool
    23     prompt "0.8.2"
    24 
    25 
    26 config MPC_V_0_8_1
    27     bool
    28     prompt "0.8.1"
    29 
    30 config MPC_V_0_7
    31     bool
    32     prompt "0.7"
    33 
    34 endchoice
    35 
    36 config MPC_VERSION
    37     string
    38 # Don't remove next line
    39 # CT_INSERT_VERSION_STRING_BELOW
    40     default "1.0.1" if MPC_V_1_0_1
    41     default "1.0" if MPC_V_1_0
    42     default "0.9" if MPC_V_0_9
    43     default "0.8.2" if MPC_V_0_8_2
    44     default "0.8.1" if MPC_V_0_8_1
    45     default "0.7" if MPC_V_0_7