Index: ld.bfd |
=================================================================== |
--- ld.bfd (revision 0) |
+++ ld.bfd (revision 0) |
@@ -0,0 +1,11 @@ |
+#!/bin/sh |
+ |
+# This script forwards requests for a program named "ld.bfd", to |
bradn
2012/01/31 18:57:26
NaCl
|
+# 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 |
Property changes on: ld.bfd |
___________________________________________________________________ |
Added: svn:executable |
+ * |