patches/binutils/2.20.1a/250-arm-eabi-conf.patch
author Anthony Foiani <anthony.foiani@gmail.com>
Thu Apr 26 19:55:59 2012 -0600 (2012-04-26)
changeset 2939 58974be61289
parent 2088 4f21ba5f8e91
permissions -rw-r--r--
Allow multi-word "install" command.

Autoconf can determine that the correct install command includes flags,
e.g., "/usr/bin/install -c". When using this as a command, we can't
enclose the value in double-quotes, as that makes some shells use the
whole expression as a filename:

# this is the value returned by autoconf and stored in CT_install
$ ins="/usr/bin/install -c"

# if we call it with quotes, the command is not found
$ "${ins}"
bash: /usr/bin/install -c: No such file or directory

# removing the quotes lets it work as expected
$ ${ins}
/usr/bin/install: missing file operand
Try `/usr/bin/install --help' for more information.

Signed-Off-By: Anthony Foiani <anthony.foiani@gmail.com>
     1 diff -u binutils-2.20.orig/configure binutils-2.20/configure
     2 
     3 diff -durN binutils-2.20.1.orig/configure binutils-2.20.1/configure
     4 --- binutils-2.20.1.orig/configure	2010-08-17 19:32:07.000000000 +0200
     5 +++ binutils-2.20.1/configure	2010-08-17 19:32:22.000000000 +0200
     6 @@ -3086,7 +3086,7 @@
     7      noconfigdirs="$noconfigdirs target-libffi target-qthreads"
     8      libgloss_dir=arm
     9      ;;
    10 -  arm*-*-linux-gnueabi)
    11 +  arm*-*-linux-*gnueabi)
    12      noconfigdirs="$noconfigdirs target-qthreads"
    13      case ${with_newlib} in
    14        no) noconfigdirs="$noconfigdirs target-newlib target-libgloss"
    15 diff -durN binutils-2.20.1.orig/configure.ac binutils-2.20.1/configure.ac
    16 --- binutils-2.20.1.orig/configure.ac	2010-08-17 19:32:07.000000000 +0200
    17 +++ binutils-2.20.1/configure.ac	2010-08-17 19:32:22.000000000 +0200
    18 @@ -573,7 +573,7 @@
    19      noconfigdirs="$noconfigdirs target-libffi target-qthreads"
    20      libgloss_dir=arm
    21      ;;
    22 -  arm*-*-linux-gnueabi)
    23 +  arm*-*-linux-*gnueabi)
    24      noconfigdirs="$noconfigdirs target-qthreads"
    25      case ${with_newlib} in
    26        no) noconfigdirs="$noconfigdirs target-newlib target-libgloss"