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
yann@1384
     1
# MPC options
yann@1384
     2
yann@1384
     3
choice
yann@1384
     4
    bool
yann@1384
     5
    prompt "MPC version"
yann@1535
     6
# Don't remove next line
yann@1535
     7
# CT_INSERT_VERSION_BELOW
yann@1384
     8
danielrubiob@3220
     9
config MPC_V_1_0_1
danielrubiob@3220
    10
    bool
danielrubiob@3220
    11
    prompt "1.0.1"
danielrubiob@3220
    12
danielrubiob@3220
    13
config MPC_V_1_0
danielrubiob@3220
    14
    bool
danielrubiob@3220
    15
    prompt "1.0"
danielrubiob@3220
    16
yann@2319
    17
config MPC_V_0_9
yann@2319
    18
    bool
yann@2957
    19
    prompt "0.9"
yann@2319
    20
yann@1985
    21
config MPC_V_0_8_2
yann@1985
    22
    bool
yann@2957
    23
    prompt "0.8.2"
yann@2957
    24
yann@1985
    25
yann@1695
    26
config MPC_V_0_8_1
yann@1695
    27
    bool
yann@1783
    28
    prompt "0.8.1"
yann@1695
    29
yann@1534
    30
config MPC_V_0_7
yann@1534
    31
    bool
yann@1534
    32
    prompt "0.7"
yann@1534
    33
yann@1384
    34
endchoice
yann@1384
    35
yann@1384
    36
config MPC_VERSION
yann@1384
    37
    string
yann@1535
    38
# Don't remove next line
yann@1535
    39
# CT_INSERT_VERSION_STRING_BELOW
danielrubiob@3220
    40
    default "1.0.1" if MPC_V_1_0_1
danielrubiob@3220
    41
    default "1.0" if MPC_V_1_0
yann@2319
    42
    default "0.9" if MPC_V_0_9
yann@1985
    43
    default "0.8.2" if MPC_V_0_8_2
yann@1695
    44
    default "0.8.1" if MPC_V_0_8_1
yann@1534
    45
    default "0.7" if MPC_V_0_7