config/debug/strace.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 1844 4d6a56579d9d
child 2444 896cb0d36c1a
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>
     1 # strace
     2 # depends on ! BACKEND
     3 
     4 config DEBUG_strace
     5 
     6 choice
     7     bool
     8     prompt "strace version"
     9 # Don't remove next line
    10 # CT_INSERT_VERSION_BELOW
    11 
    12 config STRACE_V_4_5_20
    13     bool
    14     prompt "4.5.20 (EXPERIMENTAL)"
    15     depends on EXPERIMENTAL
    16 
    17 config STRACE_V_4_5_19
    18     bool
    19     prompt "4.5.19"
    20 
    21 config STRACE_V_4_5_18
    22     bool
    23     prompt "4.5.18"
    24 
    25 config STRACE_V_4_5_17
    26     bool
    27     prompt "4.5.17 (OBSOLETE)"
    28     depends on OBSOLETE
    29 
    30 config STRACE_V_4_5_16
    31     bool
    32     prompt "4.5.16 (OBSOLETE)"
    33     depends on OBSOLETE
    34 
    35 config STRACE_V_4_5_15
    36     bool
    37     prompt "4.5.15 (OBSOLETE)"
    38     depends on OBSOLETE
    39 
    40 endchoice
    41 
    42 config STRACE_VERSION
    43     string
    44 # Don't remove next line
    45 # CT_INSERT_VERSION_STRING_BELOW
    46     default "4.5.20" if STRACE_V_4_5_20
    47     default "4.5.19" if STRACE_V_4_5_19
    48     default "4.5.18" if STRACE_V_4_5_18
    49     default "4.5.17" if STRACE_V_4_5_17
    50     default "4.5.16" if STRACE_V_4_5_16
    51     default "4.5.15" if STRACE_V_4_5_15