scripts/build/binutils/binutils-ld.in
author "Yann E. MORIN" <yann.morin.1998@free.fr>
Wed Oct 17 21:21:44 2012 +0200 (2012-10-17)
changeset 3080 f4a0fc3d0aad
permissions -rw-r--r--
kernel/linux: fix missing 'then'

Reported-by: David Holsgrove <david.holsgrove@xilinx.com>
Signed-off-by: "Yann E. MORIN" <yann.morin.1998@free.fr>
     1 #!/bin/sh
     2 
     3 call_to=@@DEFAULT_LD@@
     4 
     5 case "${CTNG_LD_IS}" in
     6     bfd)    call_to=bfd;;
     7     gold)   call_to=gold;;
     8 esac
     9 
    10 exec "${0}.${call_to}" "$@"
    11 exit $?