Change missing to always simulate makeinfo
We don't need to create documentation and thus don't care if makeinfo is
missing. Otherwise, binutils won't build on our Mac bots.
Change the missing script to not fail if makeinfo is missing.
Bug: 1454528
diff --git a/missing b/missing
index 28055d2..86c485b 100755
--- a/missing
+++ b/missing
@@ -314,7 +314,8 @@
fi
# If the file does not exist, the user really needs makeinfo;
# let's fail without touching anything.
- test -f $file || exit 1
+ # LOCALMOD: makeinfo is never needed, and our Mac bot's don't have it.
+ # test -f $file || exit 1
touch $file
;;