config/companion_libs/mpc.in
author "Yann E. MORIN" <yann.morin.1998@anciens.enib.fr>
Fri Jan 28 22:06:49 2011 +0100 (2011-01-28)
changeset 2284 7ede374110e5
parent 1783 dabf9572e240
child 2319 ef1c7007dfeb
permissions -rw-r--r--
config: add an option not to remove the destination directory

In certain circumstances, removing the destination/installation directory
is a bad idea. For example, when the build environment is already taking
care of sanitising the build tree, and pre-installs stuff in there, it is
a very bad idea to remove the destination directory.

This happens now in buildroot, as the crostool-NG backend now installs the
toolchain in the common host-tools directory, and pre-install there a few
host-utilities (eg. host-automake and host-gawk).

Provide a config knob to turn on/off the removal of the destination
directory, defaulting to 'y' (previous behavior), and forced to 'n' when
used as a backend.

Reported-by: Peter Korsgaard <jacmet@sunsite.dk>
Signed-off-by: "Yann E. MORIN" <yann.morin.1998@anciens.enib.fr>
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@1985
     9
config MPC_V_0_8_2
yann@1985
    10
    bool
yann@1985
    11
    prompt "0.8.2 (EXPERIMENTAL)"
yann@1985
    12
    depends on EXPERIMENTAL
yann@1985
    13
yann@1695
    14
config MPC_V_0_8_1
yann@1695
    15
    bool
yann@1783
    16
    prompt "0.8.1"
yann@1695
    17
yann@1534
    18
config MPC_V_0_7
yann@1534
    19
    bool
yann@1534
    20
    prompt "0.7"
yann@1534
    21
yann@1384
    22
config MPC_V_0_6
yann@1384
    23
    bool
yann@1615
    24
    prompt "0.6 (OBSOLETE)"
yann@1615
    25
    depends on OBSOLETE
yann@1384
    26
yann@1384
    27
endchoice
yann@1384
    28
yann@1384
    29
config MPC_VERSION
yann@1384
    30
    string
yann@1535
    31
# Don't remove next line
yann@1535
    32
# CT_INSERT_VERSION_STRING_BELOW
yann@1985
    33
    default "0.8.2" if MPC_V_0_8_2
yann@1695
    34
    default "0.8.1" if MPC_V_0_8_1
yann@1534
    35
    default "0.7" if MPC_V_0_7
yann@1384
    36
    default "0.6" if MPC_V_0_6