config/binutils/elf2flt.in
author "Yann E. MORIN" <yann.morin.1998@anciens.enib.fr>
Wed Sep 07 01:22:37 2011 +0200 (2011-09-07)
changeset 2653 e5fc5c9ea78a
parent 2467 200836977ce6
child 3090 a221c86d9b33
permissions -rw-r--r--
scripts: fix sysroot prefix dir

The sysroot prefix dir was broken in #4960f5d9f829 due to a mishap
when making the out-of-sysroot lib/ symlink: the './' was mistakenly
changed into a single '.' .

Although Jonathan suggested restoring the missing '/' to restore it to
normal operation, I prefered using an explicit pushd/popd to be extra
sure of the symlink location and target, along with a fix in the sysroot
relative directory calculation.

Reported-by: Jonathan Grundon <JGrundon@xos.com>
Signed-off-by: "Yann E. MORIN" <yann.morin.1998@anciens.enib.fr>
yann@1345
     1
# elf2flt options
yann@1345
     2
yann@1345
     3
if ARCH_BINFMT_FLAT
yann@1345
     4
yann@1345
     5
comment "elf2flt"
yann@1345
     6
yann@1345
     7
choice
yann@1345
     8
    bool
yann@1345
     9
    prompt "elf2flt version"
yann@1535
    10
# Don't remove next line
yann@1535
    11
# CT_INSERT_VERSION_BELOW
yann@1345
    12
yann@1345
    13
config ELF2FLT_CVSHEAD
yann@1345
    14
    bool
yann@1345
    15
    prompt "CVS Head"
yann@1345
    16
    help
yann@1345
    17
      Grab the latest version of elf2flt from the CVS repository
yann@1345
    18
yann@1345
    19
config ELF2FLT_CVS_SNAPSHOT
yann@1345
    20
    bool
yann@1345
    21
    prompt "CVS Snapshot"
yann@1345
    22
yann@1345
    23
endchoice
yann@1345
    24
yann@1345
    25
config ELF2FLT_CVS_SNAPSHOT_SPEC
yann@1345
    26
    string
yann@1345
    27
    depends on ELF2FLT_CVS_SNAPSHOT
yann@1345
    28
    default ""
yann@1345
    29
    prompt "CVS refspec for elf2flt"
yann@1345
    30
    help
yann@1345
    31
       What you enter here will be passed verbatim to the cvs checkout command
yann@1345
    32
       so be careful!
yann@1345
    33
yann@1345
    34
config ELF2FLT_VERSION
yann@1345
    35
    string
yann@1345
    36
    default "head" if ELF2FLT_CVSHEAD
yann@1535
    37
# Don't remove next line
yann@1535
    38
# CT_INSERT_VERSION_STRING_BELOW
yann@1345
    39
yann@2467
    40
config ELF2FLT_EXTRA_CONFIG_ARRAY
yann@1345
    41
    string
yann@1345
    42
    prompt "elf2flt extra config"
yann@1345
    43
    default ""
yann@1345
    44
    help
yann@1345
    45
      Extra flags passed onto ./configure when configuring
yann@2469
    46
      
yann@2469
    47
      You can enter multiple arguments here, and arguments can contain spaces
yann@2469
    48
      if they are properly quoted (or escaped, but prefer quotes). Eg.:
yann@2469
    49
          --with-foo="1st arg with 4 spaces" --with-bar=2nd-arg-without-space
yann@1345
    50
yann@1345
    51
endif