config/tools/libelf.in
author Jim F <jimfriel@gmail.com>
Mon Aug 24 19:20:57 2009 +0200 (2009-08-24)
changeset 1486 7155f2a00364
parent 977 34a6d63fd7ab
child 1534 d4ddf19a1968
permissions -rw-r--r--
glibc: fix build error caused by incorrect variable assignment

During the conversion to using bash arrays, the glibc build script
was improperly converted, and contains an incorrect variable
assignment to the config_options array.
     1 # libelf config file
     2 
     3 config TOOL_libelf
     4     help
     5       libelf lets you read, modify or create ELF files in an
     6       architecture-independent way.
     7 
     8 choice
     9     bool
    10     prompt "libelf version"
    11 
    12 config LIBELF_V_0_8_10
    13     bool
    14     prompt "0.8.10"
    15 
    16 config LIBELF_V_0_8_11
    17     bool
    18     prompt "0.8.11"
    19 
    20 # CT_INSERT_VERSION_ABOVE
    21 # Don't remove above line!
    22 endchoice
    23 
    24 config LIBELF_VERSION
    25     string
    26     default "0.8.10" if LIBELF_V_0_8_10
    27     default "0.8.11" if LIBELF_V_0_8_11
    28 # CT_INSERT_VERSION_STRING_ABOVE
    29 # Don't remove above line!