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