config/companion_libs/mpc.in
author "Yann E. MORIN" <yann.morin.1998@anciens.enib.fr>
Thu Oct 08 23:29:45 2009 +0200 (2009-10-08)
changeset 1567 56bba7d4fc89
parent 1534 d4ddf19a1968
child 1615 50b25816f5bb
permissions -rw-r--r--
samples: fix the avr32-unknown-none sample

Bizarely enough, binutils-2.18 fails to build when CONFIG_SHELL is set
to /bin/bash (although it has code to recognise bash and act accordingly).

Waht is really strange is that it does build when CONFIG_SHELL is set
to /bin/sh, *although* /bin/sh is a symlink to /bin/bash. WTF?!?!
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
yann@1534
     9
config MPC_V_0_7
yann@1534
    10
    bool
yann@1534
    11
    prompt "0.7"
yann@1534
    12
yann@1384
    13
config MPC_V_0_6
yann@1384
    14
    bool
yann@1384
    15
    prompt "0.6"
yann@1384
    16
yann@1384
    17
endchoice
yann@1384
    18
yann@1384
    19
config MPC_VERSION
yann@1384
    20
    string
yann@1535
    21
# Don't remove next line
yann@1535
    22
# CT_INSERT_VERSION_STRING_BELOW
yann@1534
    23
    default "0.7" if MPC_V_0_7
yann@1384
    24
    default "0.6" if MPC_V_0_6