| 174 | |
| 175 | === I'm getting "*** missing separator. Stop." error when running make === #missing-sep-err |
| 176 | |
| 177 | If `make` stops when processing one of the dependency file (the `.depend` file) with '''missing separator''' error similar to this: |
| 178 | |
| 179 | {{{ |
| 180 | .pjlib-arm-apple-darwin9.depend:1: *** missing separator. Stop. |
| 181 | make: *** [pjlib] Error 2 |
| 182 | }}} |
| 183 | |
| 184 | This happens because of corrupt dependency file, probably because `make dep` stopped or was stopped abruptly previously. The solution is either to delete the offending file manually or to run '''`make distclean`''' to clean everything. Either case, you'd have to run `make dep` again to rebuild the dependency. |
| 185 | |