blob: e9020cff239baad5d9db26ae6c6d2484e2653dd7 (
plain)
1
2
3
4
5
6
7
8
9
10
11
|
#!/bin/sh
# This script forwards requests for a program named "ld.bfd", to
# work around NaCl build dependencies.
if [ -x /usr/bin/ld.bfd ]; then
/usr/bin/ld.bfd "$@"
else
# Hope for the best!
/usr/bin/ld "$@"
fi
|