K 10 svn:author V 8 cperciva K 8 svn:date V 27 2015-07-10T21:17:49.975152Z K 7 svn:log V 407 When initializing a new set of builds, INDEX-NEW will be empty. When we filter out /boot/kernel/linker.hints from this empty file, we will be left with... an empty file. Unfortunately, fgrep, having read no lines and produced no output, returns an exit status of 1, which sh -e interprets as an error. Add a || true to the fgrep added in r276160 in order to unbreak init builds. Pointy Hat to: cperciva END