hi all,
i found the root cause of this error and finally got ffmpeg installed.
here’s what i did (in more detail than most command line veterans need because that’s how i like MY instructions) in case anyone else runs into this problem:
in Terminal, run command:
texi2html -version
i found i was running version 5.0 of texi2html.
i read this post:
https://groups.google.com/group/ffmbc-discuss/browse_thread/thread/9fdf9194a583e7aa?pli=1
where i learned that 5.0 is an old build and that i should remove it so a later version located in /usr/bin would be used in the ffmpeg make install instead.
so i ran command:
ls /usr/bin/texi2html
to make sure i had a version of texi2html in my /usr/bin
then i ran command:
which texi2html
to find out the location of texi2html that my system was seeing by default.
second to last, i got rid of the old version of texi2html by running command:
sudo rm /opt/local/bin/texi2html
and lastly, from the ~/ffmpeg folder i ran command:
sudo make install
and voila! install completed with no error.
love the cow.
-ryan