patches/binutils/2.18/110-enable-dash-v2.patch
author "Yann E. MORIN" <yann.morin.1998@anciens.enib.fr>
Tue Aug 02 18:28:10 2011 +0200 (2011-08-02)
changeset 2590 b64cfb67944e
permissions -rw-r--r--
scripts/functions: svn retrieval first tries the mirror for tarballs

The svn download helper looks for the local tarballs dir to see if it
can find a pre-downloaded tarball, and if it does not find it, does
the actual fetch to upstream via svn.

In the process, it does not even try to get a tarball from the local
mirror, which can be useful if the mirror has been pre-populated
manually (or with a previously downloaded tree).

Fake a tarball get with the standard tarball-download helper, but
without specifying any upstream URL, which makes the helper directly
try the LAN mirror.

Of course, if no mirror is specified, no URL wil be available, and
the standard svn retrieval will kick in.

Reported-by: ANDY KENNEDY <ANDY.KENNEDY@adtran.com>
Signed-off-by: "Yann E. MORIN" <yann.morin.1998@anciens.enib.fr>
yann@804
     1
Enable using a shell other than bash.
yann@804
     2
Courtesy "Martin Guy" <martinwguy@yahoo.it>
yann@804
     3
http://sourceware.org/ml/crossgcc/2008-08/msg00037.html
yann@804
     4
yann@804
     5
--- binutils-2.18.orig/ld/genscripts.sh	2007-08-12 20:00:07.000000000 +0100
yann@804
     6
+++ binutils-2.18/ld/genscripts.sh	2008-08-25 16:09:54.000000000 +0100
yann@804
     7
@@ -398,9 +398,11 @@
yann@804
     8
     . $em_script
yann@804
     9
     em_script=$current_script
yann@804
    10
   }
yann@804
    11
-  fragment()
yann@804
    12
+  
yann@804
    13
+  alias fragment='em_lineno=$LINENO; fragment_em'
yann@804
    14
+  fragment_em()
yann@804
    15
   {
yann@804
    16
-    local lineno=$[${BASH_LINENO[0]} + 1]
yann@804
    17
+    local lineno=$[$em_lineno + 1]
yann@804
    18
     echo >> e${EMULATION_NAME}.c "#line $lineno \"$em_script\""
yann@804
    19
     cat >> e${EMULATION_NAME}.c
yann@804
    20
   }