mirror of
https://gitlab.com/padavan-ng/padavan-ng.git
synced 2024-02-13 08:33:30 +08:00
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 $?
|