config/tools/libelf.in
author "Yann E. MORIN" <yann.morin.1998@anciens.enib.fr>
Sun Jan 25 17:53:14 2009 +0000 (2009-01-25)
changeset 1150 218f7a0e8d71
parent 975 c43713a3bf7e
child 1439 2fbb4aea2a88
permissions -rw-r--r--
On 20090120.2203+0100, Andy Johnson <ajohnson@aecno.com> wrote:
The glibc.sh script doesn't handle the glibc versions with
an underscore very well (bash expected integer error). I
have attached a small patch for that. Instead of looking
for "not period" I changed the sense to look for numbers.
I initially tried to make it look for either a period or
an underscore, but that didn't work like I wanted (probably
because I did something wrong).

Original patch modified to be more robust.

/trunk/scripts/build/libc/glibc.sh | 8 4 4 0 ++++----
1 file changed, 4 insertions(+), 4 deletions(-)
yann@245
     1
# libelf config file
yann@245
     2
yann@916
     3
config TOOL_libelf
yann@245
     4
    help
yann@245
     5
      libelf lets you read, modify or create ELF files in an
yann@245
     6
      architecture-independent way.
yann@245
     7
yann@245
     8
choice
yann@245
     9
    bool
yann@245
    10
    prompt "libelf version"
yann@245
    11
yann@369
    12
config LIBELF_V_0_8_10
yann@369
    13
    bool
yann@369
    14
    prompt "0.8.10"
yann@369
    15
yann@245
    16
# CT_INSERT_VERSION_ABOVE
yann@245
    17
# Don't remove above line!
yann@245
    18
endchoice
yann@245
    19
yann@245
    20
config LIBELF_VERSION
yann@245
    21
    string
yann@369
    22
    default "0.8.10" if LIBELF_V_0_8_10
yann@245
    23
# CT_INSERT_VERSION_STRING_ABOVE
yann@245
    24
# Don't remove above line!