mirror of
https://github.com/crosstool-ng/crosstool-ng.git
synced 2024-12-19 04:47:52 +00:00
f5b57504d2
... in uClibc and glibc. Fixes #681. While here, relocate additional "sources" for uClibc/binutils into packages/ directory. Signed-off-by: Alexey Neyman <stilor@att.net>
12 lines
154 B
Bash
12 lines
154 B
Bash
#!/bin/sh
|
|
|
|
call_to=@@DEFAULT_LD@@
|
|
|
|
case "${CTNG_LD_IS}" in
|
|
bfd) call_to=bfd;;
|
|
gold) call_to=gold;;
|
|
esac
|
|
|
|
exec "${0}.${call_to}" "$@"
|
|
exit $?
|