config/companion_tools.in
author Bob Dunlop <bob.dunlop@xyzzy.org.uk>
Tue Nov 09 10:44:29 2010 +0100 (2010-11-09)
branch1.9
changeset 2179 6224a410fb7f
parent 1729 dd72fa745318
child 2285 7d1e018167b5
permissions -rw-r--r--
libc/eglibc: fix downloading

Since Subversion 1.6.13 was released, it is no longer possible
to checkout/export to the current working directory using '.'
(eg. "svn co bla://blabla/foo/bar ." no longer extracts the content
of bar into ./ but into ./bar).

Fix this by luring Subversion to extract into "$(pwd)", which has
the advantage of working both with all known versions so far.

At the same time, remove the useless redirection.
(transplanted from 42cc9bd0db7ea6d690efab40742881414f7c1277)
richard@1727
     1
# Companion tools config options
richard@1727
     2
richard@1727
     3
if EXPERIMENTAL
richard@1727
     4
richard@1727
     5
menu "Companion tools"
richard@1727
     6
richard@1727
     7
comment "READ HELP before you say 'Y' below !!!"
richard@1727
     8
config COMP_TOOLS
richard@1727
     9
    bool
richard@1727
    10
    prompt "Build some companion tools"
richard@1727
    11
    help
richard@1727
    12
      Crosstool-NG relies on some external tools to be recent enough, namely:
richard@1728
    13
        m4 >= 1.4.12
richard@1727
    14
        autoconf >= 2.63
richard@1729
    15
        automake >= 1.10.2
richard@1730
    16
        libtool >= 2.2.4
richard@1727
    17
      
richard@1727
    18
      If your system has older versions, we can build them for you,
richard@1727
    19
      but you are strongly encouraged to update your system instead!
richard@1727
    20
richard@1727
    21
if COMP_TOOLS
richard@1727
    22
richard@1728
    23
config COMP_TOOLS_m4
richard@1728
    24
    bool
richard@1728
    25
    prompt "m4"
richard@1728
    26
richard@1727
    27
config COMP_TOOLS_autoconf
richard@1727
    28
    bool
richard@1727
    29
    prompt "autoconf"
richard@1727
    30
richard@1729
    31
config COMP_TOOLS_automake
richard@1729
    32
    bool
richard@1729
    33
    prompt "automake"
richard@1729
    34
richard@1730
    35
config COMP_TOOLS_libtool
richard@1730
    36
    bool
richard@1730
    37
    prompt "libtool"
richard@1730
    38
richard@1727
    39
endif
richard@1727
    40
richard@1727
    41
endmenu
richard@1727
    42
richard@1727
    43
endif