blob: e9020cff239baad5d9db26ae6c6d2484e2653dd7 [file] [log] [blame]
#!/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