patches/binutils/2.18a/110-enable-dash-v2.patch
author "Yann E. MORIN" <yann.morin.1998@anciens.enib.fr>
Sun Sep 11 18:18:53 2011 +0200 (2011-09-11)
changeset 2664 346263a07115
parent 804 patches/binutils/2.18/110-enable-dash-v2.patch@c057564b1969
permissions -rw-r--r--
binutils/binutils: fixup version strings

Recently, all binutils versions have been renamed after a GPL compliance
issue was found and fixed in binutils;
http://sourceware.org/ml/binutils/2011-08/msg00198.html

Although legacy symlinks have been put in place, we should now use
the new, real version strings.

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