Editing a FATE Makefile with vim, using FFmpeg's vimrc, but got the following error:
[SOLUTION]*** missing separator (did you mean TAB instead of 8 spaces?). Stop.
The actual problem weren't tabs or spaces.
It was a missing "\" in a multi-line statement.
Example:
Code: Select all
VARIABLE = one \
two
three
Code: Select all
VARIABLE = one \
two \
three